Inheritance: IfcCurve
Ejemplo n.º 1
0
 internal IfcIntersectionCurve(IfcCurve curve, IfcPCurve p1, IfcPCurve p2, IfcPreferredSurfaceCurveRepresentation cr) : base(curve, p1, p2, cr)
 {
 }
Ejemplo n.º 2
0
		internal static void parseFields(IfcPCurve l, List<string> arrFields, ref int ipos) { IfcCurve.parseFields(l, arrFields, ref ipos); l.mBasisSurface = ParserSTEP.ParseLink(arrFields[ipos++]); l.mReferenceCurve = ParserSTEP.ParseLink(arrFields[ipos++]); }
Ejemplo n.º 3
0
		internal IfcPCurve(IfcPCurve el) : base(el) { mBasisSurface = el.mBasisSurface; mReferenceCurve = el.mReferenceCurve; }
Ejemplo n.º 4
0
		internal static IfcPCurve Parse(string strDef) { IfcPCurve l = new IfcPCurve(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
Ejemplo n.º 5
0
 internal IfcIntersectionCurve(IfcCurve curve, IfcPCurve p1, IfcPCurve p2, IfcPreferredSurfaceCurveRepresentation cr)
     : base(curve,p1,p2,cr)
 {
 }