Esempio n. 1
0
        private Frame InitializeFrame(MDFJson jsonData)
        {
            Frame frame = null;

            switch (jsonData.ProfileType)
            {
            case ProfileType.MDF:
                frame = new MDFFrame(jsonData);
                break;

            case ProfileType.ADL:
                frame = new ADLFrame(jsonData);
                break;
            }

            return(frame);
        }
Esempio n. 2
0
 public ADLFrame(MDFJson jsonData)
 {
     JsonData = jsonData;
 }
Esempio n. 3
0
        // private Point3D rightProfileBottom;

        public MDFFrame(MDFJson jsonData)
        {
            JsonData = jsonData;
            AssignHingeDisplacements();
        }