video::color CTinyXMLAttributeExchangingObject::getColor(const string& name) throw(CParsingException)
{ 
	THROW_NOTIMPLEMENTED("");
}
Exemplo n.º 2
0
std::vector<CurveIntersection> Curve::intersect(Curve const &/*other*/, Coord /*eps*/) const
{
    // TODO: approximate as Bezier
    THROW_NOTIMPLEMENTED();
}
f32 CTinyXMLAttributeExchangingObject::getFloat(const string& name) throw(CParsingException)
{ 
	THROW_NOTIMPLEMENTED("");
}
Exemplo n.º 4
0
/*** ConvexHull::no_colinear_points
 * We require that no three vertices are colinear.
proposed algorithm:  We must be very careful about rounding here.
*/
bool
ConvexHull::no_colinear_points() const {
    // XXX: implement me!
    THROW_NOTIMPLEMENTED();
}