Intersect(...)
Objects in space derived from the _Point abstract class determined as the intersection of given geometric objects.
def Intersect
| constructors: |
|
|---|---|
| returns: | A point instance determined as an intersection of its arguments |
| site ref: |
class PlaneLineIntersect
| constructors: |
|
|---|---|
| returns: | the point of intersection of plane and line not on the plane |
| conditions: | line not on the plane |
| else returns: | None |
| site ref: |
class LinesIntersect
| constructors: |
|
|---|---|
| returns: | the point of intersection of 2 coplanar line s. returns None if lines are skew |
| conditions: | lines are coplanar |
| else returns: | None |
| site ref: |
class PlanesIntersect
| constructors: |
|
|---|---|
| returns: | the point of intersection of 3 plane. |
| conditions: | planes are distinct |
| else returns: | None |
| site ref: |