상속: IfcPresentationLayerAssignment
예제 #1
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcPresentationLayerWithStyle Parse(string str)
		{
			IfcPresentationLayerWithStyle s = new IfcPresentationLayerWithStyle();
			int pos = 0;
			IfcPresentationLayerAssignment.parseString(s, str, ref pos);
			s.mLayerOn = ParserIfc.StripLogical(str, ref pos);
			s.mLayerFrozen = ParserIfc.StripLogical(str, ref pos);
			s.mLayerBlocked = ParserIfc.StripLogical(str, ref pos);
			s.mLayerStyles = ParserSTEP.StripListLink(str, ref pos);
			return s;
		}
예제 #2
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcPresentationLayerWithStyle(IfcPresentationLayerWithStyle o) : base(o) { mLayerOn = o.mLayerOn; mLayerFrozen = o.mLayerFrozen; mLayerBlocked = o.mLayerBlocked; mLayerStyles = new List<int>(o.mLayerStyles.ToArray()); }