1v13d/src/FxEngine/face.c

10 lines
390 B
C
Raw Normal View History

2019-07-25 13:23:41 +02:00
#include "face.h"
void FE_draw_face(FE_face const * face)
{
if (face->s1->translated.x==face->s2->translated.x || face->s1->translated.x==face->s3->translated.x || face->s2->translated.x==face->s3->translated.x)
return;
if (face->s1->translated.y==face->s2->translated.y || face->s1->translated.y==face->s3->translated.y || face->s2->translated.y==face->s3->translated.y)
return;
}