| 12345678910111213141516171819 | #include "ugeentityaxes.h"
UGEEntityAxes::UGEEntityAxes(QObject *parent) :
    UGEEntity(parent)
{
}
void UGEEntityAxes::onDraw(AbstractRenderDevice *device)
{
    drawLine(device, ColorVector3D(Qt::red, 0.0, 0.0, 0.0), ColorVector3D(Qt::red, 1.0, 0.0, 0.0), 2.5);
    drawLine(device, ColorVector3D(Qt::green, 0.0, 0.0, 0.0), ColorVector3D(Qt::green, 0.0, 1.0, 0.0), 2.5);
    drawLine(device, ColorVector3D(Qt::blue, 0.0, 0.0, 0.0), ColorVector3D(Qt::blue, 0.0, 0.0, 1.0), 2.5);
}
Vector3D UGEEntityAxes::getVectorNearestIntesection(const Vector3D &vector, const Vector3D &pos, bool *ok)
{
    *ok = false;
    return Vector3D();
}
 |