mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +02:00
fix whitespace formatting of curly braces
This commit is contained in:
parent
a71823353b
commit
7c04a25095
1 changed files with 2 additions and 2 deletions
|
@ -16,11 +16,11 @@
|
|||
|
||||
class AACubeShape : public Shape {
|
||||
public:
|
||||
AACubeShape() : Shape(AACUBE_SHAPE), _scale(1.0f) {}
|
||||
AACubeShape() : Shape(AACUBE_SHAPE), _scale(1.0f) { }
|
||||
AACubeShape(float scale) : Shape(AACUBE_SHAPE), _scale(scale) { }
|
||||
AACubeShape(float scale, const glm::vec3& position) : Shape(AACUBE_SHAPE, position), _scale(scale) { }
|
||||
|
||||
virtual ~AACubeShape() {}
|
||||
virtual ~AACubeShape() { }
|
||||
|
||||
float getScale() const { return _scale; }
|
||||
void setScale(float scale) { _scale = scale; }
|
||||
|
|
Loading…
Reference in a new issue