mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-23 21:35:34 +00:00
rest of virtuals removed
virtuals removed and replaced with override where necessary on the rest of the code base, clang-tidy to the rescue.
This commit is contained in:
parent
efbe5e90f5
commit
2b295fb7f0
454 changed files with 4162 additions and 4156 deletions
|
|
@ -66,12 +66,12 @@ public:
|
|||
}
|
||||
|
||||
void calculateTransform( const MatrixF &worldXfrm );
|
||||
const MatrixF& getTransform() const { return mTransform; }
|
||||
Box3F getBoundingBox() const;
|
||||
Box3F getBoundingBox( const MatrixF &mat, const Point3F &scale) const;
|
||||
Point3F support( const VectorF &v ) const;
|
||||
void getFeatures( const MatrixF &mat, const VectorF &n, ConvexFeature *cf );
|
||||
void getPolyList( AbstractPolyList *list);
|
||||
const MatrixF& getTransform() const override { return mTransform; }
|
||||
Box3F getBoundingBox() const override;
|
||||
Box3F getBoundingBox( const MatrixF &mat, const Point3F &scale) const override;
|
||||
Point3F support( const VectorF &v ) const override;
|
||||
void getFeatures( const MatrixF &mat, const VectorF &n, ConvexFeature *cf ) override;
|
||||
void getPolyList( AbstractPolyList *list) override;
|
||||
|
||||
public:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue