resolved 1 bug with defines
This commit is contained in:
parent
954da5343f
commit
46354ca55e
|
@ -1,7 +1,7 @@
|
||||||
#ifndef PARAM_STATS_H
|
#ifndef PARAM_STATS_H
|
||||||
#define PARAM_STATS_H
|
#define PARAM_STATS_H
|
||||||
#ifdef MIQ_USE_ROBUST
|
#ifdef MIQ_USE_ROBUST
|
||||||
#include "predicates.h"
|
#include <predicates.h>
|
||||||
#endif
|
#endif
|
||||||
#include <vcg/space/triangle2.h>
|
#include <vcg/space/triangle2.h>
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ inline bool IsFlipped(const CoordType2D &uv0,
|
||||||
const CoordType2D &uv1,
|
const CoordType2D &uv1,
|
||||||
const CoordType2D &uv2)
|
const CoordType2D &uv2)
|
||||||
{
|
{
|
||||||
#ifdef USE_ROBUST
|
#ifdef MIQ_USE_ROBUST
|
||||||
double pa[2] = {uv0.X(), uv0.Y()};
|
double pa[2] = {uv0.X(), uv0.Y()};
|
||||||
double pb[2] = {uv1.X(), uv1.Y()};
|
double pb[2] = {uv1.X(), uv1.Y()};
|
||||||
double pc[2] = {uv2.X(), uv2.Y()};
|
double pc[2] = {uv2.X(), uv2.Y()};
|
||||||
|
|
Loading…
Reference in New Issue