Announcements
Autodesk Community will be read-only between April 26 and April 27 as we complete essential maintenance. We will remove this banner once completed. Thanks for your understanding

Plant 3D get pipe line path

p.serek
Contributor

Plant 3D get pipe line path

p.serek
Contributor
Contributor

Hi,

 

I want to get coordinates of a pipe line path (this red line on image).

plant line path.png

 

I'd like to know where each segment begins and ends or at least order in which they are placed and length, then I can figure out the coordinates of bends and where each segment ends (I hope so). Is there any property other than position of port to know where each pipe lies?

 

Greetings,

Przemek

0 Likes
Reply
Accepted solutions (1)
892 Views
2 Replies
Replies (2)

jabowabo
Mentor
Mentor
Accepted solution

Pipe objects have StartPoint and EndPoint properties:

Pipe pipe = (Pipe)tr.GetObject(objId, OpenMode.ForRead);
Point3d start = pipe.StartPoint;
Point3d end = pipe.EndPoint;

 

DVaquand
Advisor
Advisor

Hello

 

Although it is not written in DotNet, maybe this program and information will give you access to your wishes.


here is the link

"Create axes on pipe lines"

"Créer des axes sur des conduites de tuyauteries"
https://dovaq.fr/applications/

 

== French ==

Bonjour

Bien que cela ne soit pas écrit en DotNet, peut-être que ce programme et ces informations vous permettront d'accéder à vos souhaits.


Voici le lien

"Créer des axes sur des conduites de tuyauteries"
https://dovaq.fr/applications/

 

Cordialement
Dominique VAQUAND
www.dovaq.fr

Cette publication vous a-t-elle été utile ? N’hésitez pas à attribuer la mention J’aime à cette publication.
Avez-vous obtenu la réponse à votre question ? Cliquez ensuite sur le bouton ACCEPTER LA SOLUTION.

EESignature

0 Likes