25LinesObject3D::LinesObject3D(
const string&
id,
float lineWidth,
const vector<Vector3>& points,
const Color4& color,
const vector<Color4>& colors,
Texture* texture):
34 LinesObject3DInternal::setEngine(
engine);
39 LinesObject3DInternal::fromTransformations(transformations);
45 LinesObject3DInternal::update();
52 if (this->enabled ==
enabled)
return;
67 LinesObject3DInternal::setEnabled(
enabled);
74 if (this->frustumCulling ==
true) {
void deregisterEntity(Entity *entity)
Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy o...
void registerEntity(Entity *entity)
Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or par...
Object 3D to be used with engine class.
void update() override
Update transformations.
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
virtual void updateEntity(Entity *entity)=0
Updates a entity.
virtual void addEntity(Entity *entity)=0
Adds a entity.
virtual void removeEntity(Entity *entity)=0
Removes a entity.