Mapsui.Viewport.WorldToScreenUnrotated C# (CSharp) Method

WorldToScreenUnrotated() public method

public WorldToScreenUnrotated ( Point worldPosition ) : Point
worldPosition Point
return Point
        public Point WorldToScreenUnrotated(Point worldPosition)
        {
            return WorldToScreenUnrotated(worldPosition.X, worldPosition.Y);
        }

Same methods

Viewport::WorldToScreenUnrotated ( double worldX, double worldY ) : Point

Usage Example

Esempio n. 1
0
 public Point WorldToScreenUnrotated(double x, double y)
 {
     return(_viewport.WorldToScreenUnrotated(x, y));
 }
All Usage Examples Of Mapsui.Viewport::WorldToScreenUnrotated