Skip to content

Commit

Permalink
Changed: Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Rejeq committed Jul 25, 2023
1 parent 7ccf12c commit 2dfb836
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/Cellnta/Renderer/Renderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class Renderer {
void ProjectBuffers(bool projectCube = true, bool projectCells = true);

void SetRenderDistance(uint32_t distance);
void SetDimension(uint32_t D);

void SetDimension(uint32_t D);
int GetDimensions() const { return m_d; }

void SetCamera3d(const std::shared_ptr<Camera3d>& camera) {
Expand Down
2 changes: 1 addition & 1 deletion include/Cellnta/Renderer/Transform.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <Eigen/LU>
#include <Eigen/Core>

namespace Cellnta {

Expand Down
2 changes: 2 additions & 0 deletions src/Renderer/Transform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include <cfloat>

#include <Eigen/LU>

#include "Cellnta/Config.h"
#include "Cellnta/Renderer/HypercubeStorage.h"
#include "Cellnta/Renderer/NCellStorage.h"
Expand Down

0 comments on commit 2dfb836

Please sign in to comment.