mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Fix typo in plPlate.
This commit is contained in:
@ -123,14 +123,14 @@ void plPlate::SetPosition( float x, float y, float z )
|
|||||||
|
|
||||||
//// SetSize /////////////////////////////////////////////////////////////////
|
//// SetSize /////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
void plPlate::SetSize( float width, float height, bool adjustByAspectRation )
|
void plPlate::SetSize( float width, float height, bool adjustByAspectRatio )
|
||||||
{
|
{
|
||||||
hsVector3 size;
|
hsVector3 size;
|
||||||
|
|
||||||
width *= fDepth / 1.0f;
|
width *= fDepth / 1.0f;
|
||||||
height *= fDepth / 1.0f;
|
height *= fDepth / 1.0f;
|
||||||
|
|
||||||
size.fX = adjustByAspectRation ? (width * ((float)plPlateManager::Instance().GetPipeHeight() / (float)plPlateManager::Instance().GetPipeWidth())) : width;
|
size.fX = adjustByAspectRatio ? (width * ((float)plPlateManager::Instance().GetPipeHeight() / (float)plPlateManager::Instance().GetPipeWidth())) : width;
|
||||||
size.fY = height;
|
size.fY = height;
|
||||||
size.fZ = 1.0f;
|
size.fZ = 1.0f;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user