コード例 #1
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vector(float x, float y, float z, float scale)
 {
     this.scale = scale;
     this.x     = new FixedPoint(x, scale);
     this.y     = new FixedPoint(y, scale);
     this.z     = new FixedPoint(z, scale);
 }
コード例 #2
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vertex(float x, float y, float z)
 {
     this.x = new FixedPoint(x, scale);
     this.y = new FixedPoint(y, scale);
     this.z = new FixedPoint(z, scale);
 }
コード例 #3
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vector()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }
コード例 #4
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vertex()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }
コード例 #5
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vertex(float x, float y, float z, float scale)
 {
     this.scale = scale;
     this.x = new FixedPoint(x, scale);
     this.y = new FixedPoint(y, scale);
     this.z = new FixedPoint(z, scale);
 }
コード例 #6
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vertex()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }
コード例 #7
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vector(float x, float y, float z)
 {
     this.x = new FixedPoint(x, scale);
     this.y = new FixedPoint(y, scale);
     this.z = new FixedPoint(z, scale);
 }
コード例 #8
0
ファイル: KCLWriter.cs プロジェクト: RicoPlays/sm64dse
 public Vector()
 {
     this.x = new FixedPoint(0f, scale);
     this.y = new FixedPoint(0f, scale);
     this.z = new FixedPoint(0f, scale);
 }