示例#1
0
		public Matrix2D(Matrix2D rhs)
		{
			this._11Value = rhs._11Value;
			this._12Value = rhs._12Value;
			this._13Value = rhs._13Value;
			this._21Value = rhs._21Value;
			this._22Value = rhs._22Value;
			this._23Value = rhs._23Value;
			this._31Value = rhs._31Value;
			this._32Value = rhs._32Value;
			this._33Value = rhs._33Value;
		}		
示例#2
0
 public Actor(Point2D[] @shape, Matrix2D @position)
 {
     this.shapeValue    = @shape;
     this.positionValue = @position;
 }
示例#3
0
文件: Actor.cs 项目: marcarvalho/byps
		public Actor(Point2D[] @shape, Matrix2D @position) {
			this.shapeValue = @shape;
			this.positionValue = @position;
		}