Example #1
0
        // Token: 0x0600010A RID: 266 RVA: 0x00005E84 File Offset: 0x00004084
        public static double SignedDistanceTo(this Plane3 plane3, Ray3 ray3)
        {
            DistancePlane3Ray3 distancePlane3Ray = new DistancePlane3Ray3(plane3, ray3);

            return(distancePlane3Ray.SignedDistance);
        }
Example #2
0
        // Token: 0x06000133 RID: 307 RVA: 0x0000668C File Offset: 0x0000488C
        public static double DistanceTo(this Ray3 ray3, Plane3 plane3)
        {
            DistancePlane3Ray3 distancePlane3Ray = new DistancePlane3Ray3(plane3, ray3);

            return(distancePlane3Ray.Distance);
        }