public static void MultiplyInPlace(this AForge.Point point, double coef) { point.MultiplyInPlace((float)coef); }
public static AForge.Point Multiply(this AForge.Point point, double coef) { AForge.Point newPoint = point; newPoint.MultiplyInPlace(coef); return(newPoint); }