1v13d/src/FxEngine/face.c

10 lines
390 B
C

#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;
}