Method Scale
Scale(double, double)
Returns a new point scaled by the specified factors along the X and Y axes.
public Point Scale(double scaleX, double scaleY)
Parameters
scaleXdoubleThe factor to scale along the X-axis.
scaleYdoubleThe factor to scale along the Y-axis.
Returns
Scale(double)
Returns a new point uniformly scaled by a single factor.
public Point Scale(double s)
Parameters
sdoubleThe uniform scale factor.
Returns
Scale(IPoint)
Returns a new point scaled by the given vector of factors.
public Point Scale(IPoint scale)