tahoma2d/toonz/sources/toonz/predict3d.h
2016-06-15 15:43:10 +09:00

19 lines
345 B
C++

#pragma once
/*---------------------------------------------------------
* Interfaccia di predict3d.cpp
-------------------------------------------------------*/
#ifndef PREDICT3D_H
#define PREDICT3D_H
namespace Predict3D {
struct Point {
double x, y;
};
bool Predict(int k, Point initial[], Point current[], bool visible[]);
}
#endif