Prims Algorithm
bool status(1) const;
/// Retrieve the estimated cost.
bool train(1) const;
/// Retrieve the last training result, that is the number of samples it could provide.
bool predict(1) const;
/// Retrieve the latest prediction with the training result of the prediction results.
bool convert(2) const;
/// Convert the set of params to a model specific model.
bool load(2); /// Load a model from a single source model.
/// Load a model from many sources.
void cleanup(); /// Deactivate model and dataset.
void load(const char *modelFile);
void load(const char *file);
void save(2);
/// Write the model from a single source model to a file.
void save(const char *file);
void mesh(const pxVec3P model[], Point pts);
void mesh(Point pts);
void meshMesh();
void convertMeshes();
void showModel() const;
void showModel(bool show);
void printModel();
void printModel(int id);
/// Utility class from the pxVee namespace (conversions and conversions options).
class CUtil
public:
CUtil();
/// Constructor.
/// Tests whether the specified param is valid.
/// Accepts the argument/parameter and its value.
/// If it is invalid, returns that error. If it is not valid
/// a warning is emitted but throws a runtime error exception.
/// Does nothing.
void setParam(const char *id, const char *val);
const char *paramName(int index) const;
void setParam(int id, const char *val, const char *type = 0);
/// Returns information about the specified model.