コード例 #1
0
ファイル: IFC V.cs プロジェクト: PlumpMath/GeometryGymIFC-1
        internal static IfcVertexloop Parse(string str)
        {
            IfcVertexloop l   = new IfcVertexloop();
            int           pos = 0;

            l.mLoopVertex = ParserSTEP.StripLink(str, ref pos, str.Length);
            return(l);
        }
コード例 #2
0
ファイル: IFC V.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcVertexloop l, List<string> arrFields, ref int ipos) { IfcLoop.parseFields(l, arrFields, ref ipos); l.mLoopVertex = ParserSTEP.ParseLink(arrFields[ipos++]); }
コード例 #3
0
ファイル: IFC V.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcVertexloop Parse(string strDef) { IfcVertexloop l = new IfcVertexloop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
コード例 #4
0
ファイル: IFC V.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcVertexloop(IfcVertexloop o) : base(o) { mLoopVertex = o.mLoopVertex; }
コード例 #5
0
ファイル: IFC V.cs プロジェクト: PlumpMath/GeometryGymIFC-1
 internal IfcVertexloop(DatabaseIfc db, IfcVertexloop l) : base(db, l)
 {
     LoopVertex = db.Factory.Duplicate(l.LoopVertex) as IfcVertex;
 }
コード例 #6
0
 internal static void parseFields(IfcVertexloop l, List <string> arrFields, ref int ipos)
 {
     IfcLoop.parseFields(l, arrFields, ref ipos); l.mLoopVertex = ParserSTEP.ParseLink(arrFields[ipos++]);
 }
コード例 #7
0
 internal new static IfcVertexloop Parse(string strDef)
 {
     IfcVertexloop l = new IfcVertexloop(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return(l);
 }
コード例 #8
0
 internal IfcVertexloop(IfcVertexloop o) : base(o)
 {
     mLoopVertex = o.mLoopVertex;
 }
コード例 #9
0
ファイル: IFC V.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal static IfcVertexloop Parse(string str)
		{
			IfcVertexloop l = new IfcVertexloop();
			int pos = 0;
			l.mLoopVertex = ParserSTEP.StripLink(str, ref pos, str.Length);
			return l;
		}
コード例 #10
0
ファイル: IFC V.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcVertexloop(DatabaseIfc db, IfcVertexloop l) : base(db,l) { LoopVertex = db.Factory.Duplicate(l.LoopVertex) as IfcVertex; }