Ejemplo n.º 1
0
 /// <summary>
 /// Create FdCoordinateSystem from Dynamo coordinate system on surface mid u/v-point.
 /// </summary>
 internal static FdCoordinateSystem FromDynamoSurface(Autodesk.DesignScript.Geometry.Surface obj)
 {
     Autodesk.DesignScript.Geometry.CoordinateSystem cs = obj.CoordinateSystemAtParameter(0.5, 0.5);
     return(FdCoordinateSystem.FromDynamoCoordinateSystemSurface(cs));
 }