Package | flare.physics.geom |
Class | public final class Edge |
Inheritance | Edge ![]() |
See also
Property | Defined By | ||
---|---|---|---|
tri : Triangle
The triangle which owns this edge. | Edge | ||
v0 : Vertex
First vertex. | Edge | ||
v1 : Vertex
Second vertex. | Edge | ||
valid : Boolean = true
If the edge is valid or not according to a triangle / edge threshold. | Edge |
Method | Defined By | ||
---|---|---|---|
Creates a new edge beween two vertices. | Edge |
tri | property |
public var tri:Triangle
The triangle which owns this edge.
v0 | property |
public var v0:Vertex
First vertex.
v1 | property |
public var v1:Vertex
Second vertex.
valid | property |
public var valid:Boolean = true
If the edge is valid or not according to a triangle / edge threshold.
Edge | () | Constructor |
public function Edge(v0:Vertex, v1:Vertex)
Creates a new edge beween two vertices.
Parametersv0:Vertex — The first vertex.
| |
v1:Vertex — The second vertex.
|