コード例 #1
0
        public PointTransformAffine(Matrix <double> matrix, DPoint vector)
        {
            if (matrix == null)
            {
                throw new ArgumentNullException(nameof(matrix));
            }
            if (vector == null)
            {
                throw new ArgumentNullException(nameof(vector));
            }

            matrix.ThrowIfDisposed();

            if (matrix.Columns != 2 || matrix.Rows != 2)
            {
                throw new ArgumentException($"{nameof(matrix)} should be 2x2 matrix");
            }

            using (var native = vector.ToNative())
                this.NativePtr = Native.point_transform_affine_new1(matrix.NativePtr, native.NativePtr);
        }
コード例 #2
0
ファイル: DPoint.cs プロジェクト: wyd1520/DlibDotNet
 public static DPoint Rotate(DPoint center, DPoint point, double angle)
 {
     return(center.Rotate(point, angle));
 }
コード例 #3
0
ファイル: PointTransform.cs プロジェクト: tnw513/DlibDotNet
 public PointTransform(double angle, double x, double y)
 {
     using (var native = new DPoint(x, y).ToNative())
         this.NativePtr = Native.point_transform_new1(angle, native.NativePtr);
 }
コード例 #4
0
ファイル: DRectangle.cs プロジェクト: mannu598/DlibDotNet
 public DRectangle Translate(DPoint point)
 {
     return(Translate(this, point));
 }
コード例 #5
0
ファイル: DRectangle.cs プロジェクト: mannu598/DlibDotNet
 public static DRectangle CenteredRect(double x, double y, double width, double height)
 {
     using (var p = new DPoint(x, y))
         return(CenteredRect(p, width, height));
 }
コード例 #6
0
 public PointTransform(double angle, double x, double y)
 {
     using (var vector = new DPoint(x, y))
         this.NativePtr = Native.point_transform_new1(angle, vector.NativePtr);
 }