// // Created by Sam Gondelman on 1/7/19. // Copyright 2019 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #ifndef hifi_PrimitiveMode_h #define hifi_PrimitiveMode_h #include "QString" /**jsdoc *

How the geometry of the entity is rendered.

* * * * * * * * *
ValueDescription
solidThe entity will be drawn as a solid shape.
linesThe entity will be drawn as wireframe.
* @typedef {string} PrimitiveMode */ enum class PrimitiveMode { SOLID = 0, LINES }; class PrimitiveModeHelpers { public: static QString getNameForPrimitiveMode(PrimitiveMode mode); }; #endif // hifi_PrimitiveMode_h