Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -71,7 +71,7 @@ PyMOD_INIT_FUNC(PathSimulator)
|
||||
|
||||
//
|
||||
PyObject* mod = PathSimulator::initModule();
|
||||
Base::Console().Log("Loading PathSimulator module.... done\n");
|
||||
Base::Console().log("Loading PathSimulator module.... done\n");
|
||||
|
||||
// Add Types to module
|
||||
Base::Interpreter().addType(&PathSimulator::PathSimPy::Type, mod, "PathSim");
|
||||
|
||||
@@ -134,7 +134,7 @@ PyObject* PathSimPy::ApplyCommand(PyObject* args, PyObject* kwds)
|
||||
Base::Placement* pos = static_cast<Base::PlacementPy*>(pObjPlace)->getPlacementPtr();
|
||||
Path::Command* cmd = static_cast<Path::CommandPy*>(pObjCmd)->getCommandPtr();
|
||||
Base::Placement* newpos = sim->ApplyCommand(pos, cmd);
|
||||
// Base::Console().Log("Done...\n");
|
||||
// Base::Console().log("Done...\n");
|
||||
// Base::Console().Refresh();
|
||||
Base::PlacementPy* newposPy = new Base::PlacementPy(newpos);
|
||||
return newposPy;
|
||||
|
||||
@@ -777,7 +777,7 @@ cSimTool::cSimTool(const TopoDS_Shape& toolShape, float res)
|
||||
// Report the performance of the profile extraction
|
||||
// auto stop = std::chrono::high_resolution_clock::now();
|
||||
// auto duration = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
|
||||
// Base::Console().Log("cSimTool::cSimTool - Tool Profile Extraction Took: %i ms\n",
|
||||
// Base::Console().log("cSimTool::cSimTool - Tool Profile Extraction Took: %i ms\n",
|
||||
// duration.count() / 1000);
|
||||
}
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ PyMOD_INIT_FUNC(CAMSimulator)
|
||||
|
||||
//
|
||||
PyObject* mod = CAMSimulator::initModule();
|
||||
Base::Console().Log("Loading CAMSimulator module.... done\n");
|
||||
Base::Console().log("Loading CAMSimulator module.... done\n");
|
||||
|
||||
// Add Types to module
|
||||
Base::Interpreter().addType(&CAMSimulator::CAMSimPy::Type, mod, "PathSim");
|
||||
|
||||
@@ -196,7 +196,7 @@ bool CheckCompileResult(int shaderId, const char* shaderName, bool isVertex)
|
||||
len = 1020;
|
||||
}
|
||||
log[len] = 0;
|
||||
Base::Console().Error(log);
|
||||
Base::Console().error(log);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user