Rename LegoEdge::GetOpposingPoint to LegoEdge::CWVertex (#977)

This commit is contained in:
DmitriLeon2000
2024-05-31 09:04:06 +09:00
committed by GitHub
parent eeb81b7223
commit 3b3ac07cac
6 changed files with 12 additions and 12 deletions

View File

@@ -51,7 +51,7 @@ LegoEdge* LegoEdge::GetCounterclockwiseEdge(LegoWEEdge& p_face)
}
// FUNCTION: LEGO1 0x1009a510
Vector3* LegoEdge::GetOpposingPoint(LegoWEEdge& p_face)
Vector3* LegoEdge::CWVertex(LegoWEEdge& p_face)
{
return &p_face == m_faceA ? m_pointB : m_pointA;
}