Exemplo n.º 1
0
        public BoxPosition RotateZ180(Vector3D dim)
        {
            Vector3D v = Position;

            v += dim.X * HalfAxis.ToVector3D(DirectionLength) + dim.Y * HalfAxis.ToVector3D(DirectionWidth);
            return(new BoxPosition(v, HalfAxis.Opposite(DirectionLength), HalfAxis.Opposite(DirectionWidth)));
        }