System.Drawing.PointF.Mul(float)

Here are the examples of the csharp api class System.Drawing.PointF.Mul(float) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: XamarinComponents
Source File: CoreGraphicsExtensions.cs
public static CGPoint Split(this CGPoint self, CGPoint point, nfloat ratio)
        {
            return self.Mul(ratio).Plus(point.Mul(1.0f - ratio));
        }