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:
marauder2k7 2024-03-18 18:40:22 +00:00
parent efbe5e90f5
commit 2b295fb7f0
454 changed files with 4162 additions and 4156 deletions

View file

@ -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: