mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-23 16:21:15 +00:00
Fix LegoEdge::CWVertex()
This commit is contained in:
parent
02622d7902
commit
f496a56f4a
@ -52,14 +52,14 @@ LegoEdge* LegoEdge::GetCounterclockwiseEdge(LegoWEEdge& p_face)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// FUNCTION: LEGO1 0x1009a510
|
// FUNCTION: LEGO1 0x1009a510
|
||||||
// FUNCTION: BETA10 0x10182498
|
// FUNCTION: BETA10 0x10182433
|
||||||
Vector3* LegoEdge::CWVertex(LegoWEEdge& p_face)
|
Vector3* LegoEdge::CWVertex(LegoWEEdge& p_face)
|
||||||
{
|
{
|
||||||
if (m_faceA == &p_face) {
|
if (m_faceA == &p_face) {
|
||||||
return m_pointB;
|
return m_pointB;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
assert(m_faceA == &p_face);
|
assert(m_faceB == &p_face);
|
||||||
return m_pointA;
|
return m_pointA;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user