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

setJSON() protected method

protected setJSON ( JObject obj, BaseClassIfc host, List prime ) : void
obj JObject
host BaseClassIfc
prime List
return void
        protected override void setJSON(JObject obj, BaseClassIfc host, List<BaseClassIfc> prime)
        {
            base.setJSON(obj, host, prime);
            mJsonObject["StartPoint"] = mDatabase[mStartPoint].getJson(this, prime);
            mJsonObject["StartDirection"] = mStartDirection;
            mJsonObject["SegmentLength"] = mSegmentLength;
        }