mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 01:06:25 +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 {
|
class AACubeShape : public Shape {
|
||||||
public:
|
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) : Shape(AACUBE_SHAPE), _scale(scale) { }
|
||||||
AACubeShape(float scale, const glm::vec3& position) : Shape(AACUBE_SHAPE, position), _scale(scale) { }
|
AACubeShape(float scale, const glm::vec3& position) : Shape(AACUBE_SHAPE, position), _scale(scale) { }
|
||||||
|
|
||||||
virtual ~AACubeShape() {}
|
virtual ~AACubeShape() { }
|
||||||
|
|
||||||
float getScale() const { return _scale; }
|
float getScale() const { return _scale; }
|
||||||
void setScale(float scale) { _scale = scale; }
|
void setScale(float scale) { _scale = scale; }
|
||||||
|
|
Loading…
Reference in a new issue