Python Exposed Methods
| 191 | |
| 192 | // Python Exposed Methods |
| 193 | void Tr2LineSet::AddPickingTriangle( const Vector3& position1, const Vector3& position2, const Vector3& position3 ) |
| 194 | { |
| 195 | Triangle newTriangle; |
| 196 | |
| 197 | newTriangle.m_position1 = position1; |
| 198 | newTriangle.m_position2 = position2; |
| 199 | newTriangle.m_position3 = position3; |
| 200 | |
| 201 | m_triangles.push_back( newTriangle ); |
| 202 | } |
| 203 | |
| 204 | bool Tr2LineSet::SubmitChanges() |
| 205 | { |
no outgoing calls
no test coverage detected