示例#1
0
        }                                                 // optional


        /// <summary>
        /// Construct a IfcIndexedPolyCurve with all required attributes.
        /// </summary>
        public IfcIndexedPolyCurve(IfcCartesianPointList points) : base()
        {
            Segments = new List <IfcSegmentIndexSelect>();

            Points = points;
        }
示例#2
0
 public IfcIndexedPolyCurve(IfcCartesianPointList points, List <IfcSegmentIndexSelect> segments, IfcBoolean selfIntersect) : base()
 {
     Points        = points;
     Segments      = segments;
     SelfIntersect = selfIntersect;
 }
示例#3
0
 public static IfcDimensionCount IfcPointListDim(IfcCartesianPointList pointList)
 {
     throw new NotImplementedException();
 }