private void loadCurveAndSurfaceDefinitions() {
final Log log = new Log("Creating curve and surface definitions");
try {
final ExampleCurveAndSurfaceDefinitionLoader curveLoader = new ExampleCurveAndSurfaceDefinitionLoader();
curveLoader.run(getToolContext());
log.done();
} catch (final RuntimeException t) {
log.fail(t);
}
}