Console: rename PascalCase named methods to camelCase

This commit is contained in:
bofdahof
2025-03-30 00:50:27 +10:00
committed by Kacper Donat
parent 1dbc0638c3
commit ba2c2ca5ad
497 changed files with 2423 additions and 2425 deletions

View File

@@ -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");

View File

@@ -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;

View File

@@ -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);
}

View File

@@ -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");

View File

@@ -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;
}