コード例 #1
0
ファイル: IFC T.cs プロジェクト: jenca-cloud/ggIFC
		internal static IfcTextLiteral Parse(string strDef) { IfcTextLiteral l = new IfcTextLiteral(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
コード例 #2
0
ファイル: IFC T.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcTextLiteral l, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(l, arrFields, ref ipos); l.mLiteral = arrFields[ipos++]; l.mPlacement = ParserSTEP.ParseLink(arrFields[ipos++]); l.mPath = (IfcTextPath)Enum.Parse(typeof(IfcTextPath), arrFields[ipos++].Replace(".", "")); }
コード例 #3
0
ファイル: IFC T.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcTextLiteral(IfcTextLiteral o) : base(o) { mLiteral = o.mLiteral; mPlacement = o.mPlacement; mPath = o.mPath; }