예제 #1
0
 private Vector2D IsoToScreen(IsoPos isoPos)
 {
     return(new Vector2D(
                isoPos.H * this._scale + this._origin.X,
                -isoPos.V * this._scale + this._origin.Y
                ));
 }
예제 #2
0
 public IsoBB(IsoPos posMin, IsoPos posMax)
 {
     PosMin = posMin; PosMax = posMax;
 }