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/cuboid.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/cuboid.cpp')
-rw-r--r-- | assetFactory/cuboid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assetFactory/cuboid.cpp b/assetFactory/cuboid.cpp index cfb6cfb..1019830 100644 --- a/assetFactory/cuboid.cpp +++ b/assetFactory/cuboid.cpp @@ -4,7 +4,7 @@ Cuboid::CreatedFaces Cuboid::createMesh(ModelFactoryMesh & mesh, float) const { - static constexpr std::array<Position3D, 8> VERTICES {{ + static constexpr std::array<RelativePosition3D, 8> VERTICES {{ // bottom {n, n, z}, {n, y, z}, |