mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-27 02:19:07 -07:00
34 lines
735 B
ActionScript
34 lines
735 B
ActionScript
package versions.version1.a3d.objects
|
|
{
|
|
import commons.A3DMatrix;
|
|
|
|
public class A3DTransformation
|
|
{
|
|
private var §_-6p§:A3DMatrix;
|
|
|
|
public function A3DTransformation(matrix:A3DMatrix)
|
|
{
|
|
super();
|
|
this.§_-6p§ = matrix;
|
|
}
|
|
|
|
public function get matrix() : A3DMatrix
|
|
{
|
|
return this.§_-6p§;
|
|
}
|
|
|
|
public function set matrix(value:A3DMatrix) : void
|
|
{
|
|
this.§_-6p§ = value;
|
|
}
|
|
|
|
public function toString() : String
|
|
{
|
|
var result:String = "A3DTransformation [";
|
|
result += "matrix = " + this.matrix + " ";
|
|
return result + "]";
|
|
}
|
|
}
|
|
}
|
|
|