Esempio n. 1
0
 public CT_Camera()
 {
     this.rotField = new CT_SphereCoords();
     this.zoomField = 100000;
 }
Esempio n. 2
0
 public static CT_SphereCoords Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_SphereCoords ctObj = new CT_SphereCoords();
     ctObj.lat = XmlHelper.ReadInt(node.Attributes["lat"]);
     ctObj.lon = XmlHelper.ReadInt(node.Attributes["lon"]);
     ctObj.rev = XmlHelper.ReadInt(node.Attributes["rev"]);
     return ctObj;
 }
Esempio n. 3
0
 public CT_LightRig()
 {
     this.rotField = new CT_SphereCoords();
 }