Example #1
0
        // Token: 0x06000392 RID: 914 RVA: 0x0000FAAC File Offset: 0x0000DCAC
        public static ICollection <Vector3> IntersectionPointsWith(this Plane3 plane, Arc3 arc)
        {
            IntersectionPlane3Arc3 intersectionPlane3Arc = new IntersectionPlane3Arc3(plane, arc);

            return(intersectionPlane3Arc.Find());
        }
Example #2
0
        // Token: 0x06000391 RID: 913 RVA: 0x0000FA8C File Offset: 0x0000DC8C
        public static bool Intersects(this Plane3 plane, Arc3 arc)
        {
            IntersectionPlane3Arc3 intersectionPlane3Arc = new IntersectionPlane3Arc3(plane, arc);

            return(intersectionPlane3Arc.Test());
        }