calculate area by selecting specified area from polyline

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
Neeha
Posts: 4
Joined: 23 Jan 2017, 21:46

calculate area by selecting specified area from polyline

Post by Neeha » 24 Jan 2017, 21:09

Hello

I am using editordemo in my project . I am opening an dxf image in editing mode.
Now i am selecting some region by using polyline.

how can i calculate polyline length, width and also area of seleted part of that image.

help me!!!!

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: calculate area by selecting specified area from polyline

Post by support » 25 Jan 2017, 15:28

Hello Neeha,

To calculate a width, height and area of the region bounded by a closed rectangular polyline, you can use CADPolyLine.Box.Width and CADPolyLine.Box.Height properties:

Code: Select all

CADPolyLine polyLine;
...

double rectArea = polyLine.Box.Width * polyLine.Box.Height;
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Neeha
Posts: 4
Joined: 23 Jan 2017, 21:46

Re: calculate area by selecting specified area from polyline

Post by Neeha » 25 Jan 2017, 21:27

thanks for the code.


But please also tell me how and where to write code.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: calculate area by selecting specified area from polyline

Post by support » 25 Jan 2017, 21:37

please also tell me how and where to write code
It depends on the logic of your application.


Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Neeha
Posts: 4
Joined: 23 Jan 2017, 21:46

Re: calculate area by selecting specified area from polyline

Post by Neeha » 25 Jan 2017, 21:39

Hello

I want to implement it in editor demo
where already an option "add new poly" is written .

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: calculate area by selecting specified area from polyline

Post by support » 30 Jan 2017, 19:06

Neeha,

The EditorDemo project uses the EntitiesCreator class which creates entities automatically and doesn't expose CADEntity derivatives during creation of entities. However, you can try to find the last added polyline by using a CADEntityCollection.FindLast method with the following predicate:

Code: Select all

Predicate<CADEntity> p = new Predicate<CADEntity>(ent => ent.EntType == EntityType.Polyline);
The FindLast method may be called in EndAddEntity method as shown below.

Code: Select all

public void EndAddEntity(bool val)
{
	if(curAddEntityType != CreatorType.Undetected)
	{
		SetAddEntityMode(curAddEntityType);
		SetEnableChecked();				
		ChangeControlState();
        
		CADEntity ent = entCreator.Image.Converter.Entities.FindLast(p);
		CADPolyLine polyline = ent as CADPolyLine;
		double rectArea = polyline.Box.Width * polyline.Box.Height;
	}
	this.detMouseDown = val;
}	
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Lilltina
Posts: 1
Joined: 01 Feb 2017, 13:55
Location: Edinburgh
Contact:

Re: calculate area by selecting specified area from polyline

Post by Lilltina » 02 Feb 2017, 12:12

support wrote:Hello Neeha,

To calculate a width, height and area of the region bounded by a closed rectangular polyline, you can use CADPolyLine.Box.Width and CADPolyLine.Box.Height properties:

Code: Select all

CADPolyLine polyLine;
...

double rectArea = polyLine.Box.Width * polyLine.Box.Height;
Mikhail
Thank you Mikhail this was a pice of cake thanks to you!

Testa dagens casino nu för att spela
Bästa sidorna i Sverige hittar du på Sweden casino med bäst bonusar.
Spela på alla casino på nätet och vinn stort!
Letar du efter ett casino utan konto? Läs mer om hur du gör det här.
Spela på valfritt casino kortspel.
Last edited by Lilltina on 05 Sep 2021, 18:52, edited 2 times in total.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: calculate area by selecting specified area from polyline

Post by support » 02 Feb 2017, 19:42

Lilltina,

You are welcome.


Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Holmes2499
Posts: 2
Joined: 14 Feb 2017, 12:36

Re: calculate area by selecting specified area from polyline

Post by Holmes2499 » 14 Feb 2017, 14:06

thanks for the code.
Gclub

Post Reply