Struct Geometry.IntersectionResult
Represents an intersection result.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Oasys.Common.Logic
Assembly: Oasys.Common.dll
Syntax
public struct IntersectionResult
Constructors
IntersectionResult(Boolean, Vector2)
Initializes a new instance of the Geometry.IntersectionResult struct.
Declaration
public IntersectionResult(bool Intersects = false, Vector2 Point = default(Vector2))
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | Intersects | if set to |
SharpDX.Vector2 | Point | The point. |
Fields
Intersects
If they intersect.
Declaration
public bool Intersects
Field Value
Type | Description |
---|---|
System.Boolean |
Point
The point
Declaration
public Vector2 Point
Field Value
Type | Description |
---|---|
SharpDX.Vector2 |