Browse Source

Merge pull request #17685 from marcelofg55/get_area_const

Fix missing const in CapsuleShapeSW::get_area
Bojidar Marinov 7 years ago
parent
commit
4b00cc9f8a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      servers/physics/shape_sw.h

+ 1 - 1
servers/physics/shape_sw.h

@@ -240,7 +240,7 @@ public:
 	_FORCE_INLINE_ real_t get_height() const { return height; }
 	_FORCE_INLINE_ real_t get_height() const { return height; }
 	_FORCE_INLINE_ real_t get_radius() const { return radius; }
 	_FORCE_INLINE_ real_t get_radius() const { return radius; }
 
 
-	virtual real_t get_area() { return 4.0 / 3.0 * Math_PI * radius * radius * radius + height * Math_PI * radius * radius; }
+	virtual real_t get_area() const { return 4.0 / 3.0 * Math_PI * radius * radius * radius + height * Math_PI * radius * radius; }
 
 
 	virtual PhysicsServer::ShapeType get_type() const { return PhysicsServer::SHAPE_CAPSULE; }
 	virtual PhysicsServer::ShapeType get_type() const { return PhysicsServer::SHAPE_CAPSULE; }