.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Draw Rectangle using ObjectARX and SDK

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
chikito1990
2150 Views, 2 Replies

Draw Rectangle using ObjectARX and SDK

Hi all, 

 

I am still super new here just joined 🙂

I have to draw a rectangle using ObjectARX but the problem is that i cannot find a method for the task, I found all kind of other methods like Line, Circle, ..... I managed to do it like that:

            Point3d pointA = new Point3d(20,20,0);
            Point3d pointB = new Point3d(40,20,0);
            Point3d pointC = new Point3d(20,10,0);
            Point3d pointD = new Point3d(40,10,0);

            Line line1 = new Line(pointA, pointB);
            Line line2 = new Line(pointA, pointC);
            Line line3 = new Line(pointB, pointD);
            Line line4 = new Line(pointC, pointD);

But I thnk there must be a way to do it more easily. Can some one please help me or send me a link with some good tutorial(i checked nothing useful) Thank you in advance!

P.S.
I am still new in ObjectARX(started 2 day ago)

 

2 REPLIES 2
Message 2 of 3
_gile
in reply to: chikito1990

Hi,

 

AutoCAD Rectangles are closed polylines.

 

Polyline pline = new Polyline();
pline.AddVertexAt(0, new Point2d(20.0, 10.0), 0.0, 0.0, 0.0);
pline.AddVertexAt(0, new Point2d(40.0, 10.0), 0.0, 0.0, 0.0);
pline.AddVertexAt(0, new Point2d(40.0, 20.0), 0.0, 0.0, 0.0);
pline.AddVertexAt(0, new Point2d(20.0, 20.0), 0.0, 0.0, 0.0);
pline.Closed = true;

 



Gilles Chanteau
Programmation AutoCAD LISP/.NET
GileCAD
GitHub

Message 3 of 3
chikito1990
in reply to: _gile

Thnak you for the help!!!!!! Really appreciated 🙂

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost