コード例 #1
0
ファイル: Input.cs プロジェクト: suifengsigan/TEST_1
 internal VectorResult(Snap.UI.Response response, Position point, Vector direction)
 {
     this.Response  = response;
     this.Point     = point;
     this.Direction = direction;
 }
コード例 #2
0
ファイル: Input.cs プロジェクト: suifengsigan/TEST_1
 internal PlaneResult(Snap.UI.Response response, Snap.Geom.Surface.Plane plane)
 {
     this.Response = response;
     this.Plane    = plane;
 }
コード例 #3
0
ファイル: Input.cs プロジェクト: suifengsigan/TEST_1
 internal PositionResult(Snap.UI.Response response, Snap.Position position)
 {
     this.Response = response;
     this.Position = position;
 }
コード例 #4
0
 internal Result(Snap.NX.NXObject[] objects, Snap.UI.Response response, Snap.Geom.Curve.Ray ray)
 {
     this.Objects   = objects;
     this.Response  = response;
     this.CursorRay = ray;
 }