mirror of
https://github.com/leozide/leocad
synced 2025-01-01 06:19:55 +01:00
18 lines
398 B
C
18 lines
398 B
C
|
#ifndef _DEBUG_H_
|
||
|
#define _DEBUG_H_
|
||
|
#ifdef LC_DEBUG
|
||
|
|
||
|
#include "algebra.h"
|
||
|
|
||
|
void RenderDebugPrimitives();
|
||
|
|
||
|
void AddDebugLine(const Vector3& pt1, const Vector3& pt2, const Vector3& Color);
|
||
|
void ClearDebugLines();
|
||
|
|
||
|
void AddDebugQuad(const Vector3& pt1, const Vector3& pt2, const Vector3& pt3, const Vector3& pt4, const Vector4& Color);
|
||
|
void ClearDebugQuads();
|
||
|
|
||
|
|
||
|
#endif // LC_DEBUG
|
||
|
#endif // _DEBUG_H_
|