diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-01-01 19:48:53 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-01-01 19:48:53 +0000 |
commit | 0a0f40c7ef055b39b061072299326a786ca0be7b (patch) | |
tree | 71b084064f9f6af86e0273cfcd1edf355d5954d6 /assetFactory/plane.cpp | |
parent | nodiscard in Asset factory mutation (diff) | |
download | ilt-0a0f40c7ef055b39b061072299326a786ca0be7b.tar.bz2 ilt-0a0f40c7ef055b39b061072299326a786ca0be7b.tar.xz ilt-0a0f40c7ef055b39b061072299326a786ca0be7b.zip |
Remove more use of legacy types from asset factory
Diffstat (limited to 'assetFactory/plane.cpp')
-rw-r--r-- | assetFactory/plane.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assetFactory/plane.cpp b/assetFactory/plane.cpp index 28fb690..e8847a2 100644 --- a/assetFactory/plane.cpp +++ b/assetFactory/plane.cpp @@ -4,7 +4,7 @@ Plane::CreatedFaces Plane::createMesh(ModelFactoryMesh & mesh, float) const { - static constexpr std::array<Position3D, 4> VERTICES {{ + static constexpr std::array<RelativePosition3D, 4> VERTICES {{ {n, n, z}, {y, n, z}, {y, y, z}, |