Example #1
0
 public ModPicking()
 {
     unproject         = new Unproject();
     tempViewport      = new float[4];
     tempRay           = new float[4];
     tempRayStartPoint = new float[4];
 }
Example #2
0
 public ModPicking()
 {
     unproject = new Unproject();
     tempViewport = new float[4];
     tempRay = new float[4];
     tempRayStartPoint = new float[4];
     fillarea = new DictionaryVector3Float();
 }
Example #3
0
 public ModPicking()
 {
     unproject         = new Unproject();
     tempViewport      = new float[4];
     tempRay           = new float[4];
     tempRayStartPoint = new float[4];
     fillarea          = new DictionaryVector3Float();
 }
Example #4
0
 /// <summary>
 /// Set the unproject function for this event manager.
 /// This should be done by a camera manager.
 /// </summary>
 /// <param name="unprojectFunc"></param>
 public void setUnprojectFunction(Unproject unprojectFunc)
 {
     this.unprojectFunc = unprojectFunc;
 }