Hello Guys, my problem is acess property entity center point of subentity Arc, the python node is error, smebody help me fix this problem
?
Hi @souza288
Try first accessing the wrapped Civil 3D entity using the InternalDBObject property for the arc within your for loop. Then the CenterPoint property should be accessible.
Example:
aeccArc = arc.InternalDBObject
center = aeccArc.CenterPoint
thank’s jensen and omar.g !!!