GeometryGym.Ifc.IfcStructuralLoadLinearForce.setJSON C# (CSharp) Method

setJSON() protected method

protected setJSON ( JObject obj, BaseClassIfc host, HashSet processed ) : void
obj JObject
host BaseClassIfc
processed HashSet
return void
		protected override void setJSON(JObject obj, BaseClassIfc host, HashSet<int> processed)
		{
			base.setJSON(obj, host, processed);
			if (!double.IsNaN(mLinearForceX))
				obj["LinearForceX"] = mLinearForceX;
			if (!double.IsNaN(mLinearForceY))
				obj["LinearForceY"] = mLinearForceY;
			if (!double.IsNaN(mLinearForceZ))
				obj["LinearForceZ"] = mLinearForceZ;
			if (!double.IsNaN(mLinearMomentX))
				obj["LinearMomentX"] = mLinearMomentX;
			if (!double.IsNaN(mLinearMomentY))
				obj["LinearMomentY"] = mLinearMomentY;
			if (!double.IsNaN(mLinearMomentZ))
				obj["LinearMomentZ"] = mLinearMomentZ;
		}
	}
IfcStructuralLoadLinearForce