41LinesObject3DInternal::LinesObject3DInternal(
const string&
id,
float lineWidth,
const vector<Vector3>& points,
const Color4& color,
const vector<Color4>& colors,
Texture* texture)
56 if (points.size() > 1) {
61 for (
auto& point:
points) {
62 auto& pointXYZ = point.getArray();
63 if (pointXYZ[0] < bbMinXYZ[0]) bbMinXYZ[0] = pointXYZ[0];
64 if (pointXYZ[1] < bbMinXYZ[1]) bbMinXYZ[1] = pointXYZ[1];
65 if (pointXYZ[2] < bbMinXYZ[2]) bbMinXYZ[2] = pointXYZ[2];
66 if (pointXYZ[0] > bbMaxXYZ[0]) bbMaxXYZ[0] = pointXYZ[0];
67 if (pointXYZ[1] > bbMaxXYZ[1]) bbMaxXYZ[1] = pointXYZ[1];
68 if (pointXYZ[2] > bbMaxXYZ[2]) bbMaxXYZ[2] = pointXYZ[2];
98 vboIds = vboManaged->getVBOIds();
105 auto fbPoints = ObjectBuffer::getByteBuffer(contextIdx,
points.size() * 3 *
sizeof(
float))->asFloatBuffer();
106 for (
auto& point:
points) fbPoints.put(point.getArray());
112 auto fbColors = ObjectBuffer::getByteBuffer(contextIdx,
points.size() * 4 *
sizeof(
float))->asFloatBuffer();
static TextureManager * getTextureManager()
static Engine * getInstance()
Returns engine instance.
static VBOManager * getVBOManager()
const string & getId() const
array< float, 4 > & getArray() const
void set(const array< float, 4 > &color)
Set up color.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void update()
Updates this bounding box.
virtual ~LinesObject3DInternal()
Destructor.
void initialize()
Initialize.
void update() override
Update transformations.
void fromTransformations(const Transformations &transformations) override
From transformations.
void updateBoundingBox()
Update bounding volume.
vector< int32_t > * vboIds
void removeTexture(const string &textureId)
Removes a texture from manager / open gl stack.
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
VBOManager_VBOManaged * addVBO(const string &vboId, int32_t ids, bool useGPUMemory, bool shared, bool &created)
Adds a VBO to manager or retrieve VBO if existing.
void removeVBO(const string &vboId)
Removes a VBO from manager.
int32_t CONTEXTINDEX_DEFAULT
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0
Uploads buffer data to buffer object.
Buffers used to transfer data between main memory to graphics board memory.
Vector3 & set(float x, float y, float z)
Set up vector.
array< float, 3 > & getArray() const