Exemple #1
0
        public override bool Equals(object other)
        {
            if (other == null || !(other is CGVector))
            {
                return(false);
            }
            CGVector o = (CGVector)other;

            return(o.dx == dx && o.dy == dy);
        }
Exemple #2
0
 extern static IntPtr NSStringFromCGVector(CGVector vector);