[FEAT] Remove unused fonctions

This commit is contained in:
NADAL Jean-Baptiste
2024-02-16 11:40:32 +01:00
parent f8b94c9d0b
commit 53cf65fda2
2 changed files with 0 additions and 9 deletions

View File

@@ -82,13 +82,6 @@ bool Shape::operator==(const Shape &a_shape) const
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */
bool Shape::is_nothing(void)
{
return (m_id == kNothing);
}
/* ------------------------------------------------------------------------- */
Matrix &Shape::transform(void) Matrix &Shape::transform(void)
{ {
return m_transform; return m_transform;

View File

@@ -51,8 +51,6 @@ namespace Raytracer
const Shape &operator=(const Shape &a_shape); const Shape &operator=(const Shape &a_shape);
bool operator==(const Shape &a_shape) const; bool operator==(const Shape &a_shape) const;
bool is_nothing(void);
Matrix &transform(void); Matrix &transform(void);
void set_transform(const Matrix &a_transform_matrix); void set_transform(const Matrix &a_transform_matrix);