GeometryGym.Ifc.IfcStructuralLoadLinearForce.parseJObject C# (CSharp) Méthode

parseJObject() private méthode

private parseJObject ( JObject obj ) : void
obj JObject
Résultat void
		internal override void parseJObject(JObject obj)
		{
			base.parseJObject(obj);
			JToken token = obj.GetValue("LinearForceX", StringComparison.InvariantCultureIgnoreCase);
			if (token != null)
				double.TryParse(token.Value<string>(), out mLinearForceX);
			token = obj.GetValue("LinearForceY", StringComparison.InvariantCultureIgnoreCase);
			if (token != null)
				double.TryParse(token.Value<string>(), out mLinearForceY);
			token = obj.GetValue("LinearForceZ", StringComparison.InvariantCultureIgnoreCase);
			if (token != null)
				double.TryParse(token.Value<string>(), out mLinearForceZ);
			token = obj.GetValue("LinearMomentX", StringComparison.InvariantCultureIgnoreCase);
			if (token != null)
				double.TryParse(token.Value<string>(), out mLinearMomentX);
			token = obj.GetValue("LinearMomentY", StringComparison.InvariantCultureIgnoreCase);
			if (token != null)
				double.TryParse(token.Value<string>(), out mLinearMomentY);
			token = obj.GetValue("LinearMomentZ", StringComparison.InvariantCultureIgnoreCase);
			if (token != null)
				double.TryParse(token.Value<string>(), out mLinearMomentZ);
		}
		protected override void setJSON(JObject obj, BaseClassIfc host, HashSet<int> processed)
IfcStructuralLoadLinearForce