Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -114,8 +114,8 @@ void pointPair::invertY()
|
||||
|
||||
void pointPair::dump(const std::string& text) const
|
||||
{
|
||||
Base::Console().Message("pointPair - %s\n", text.c_str());
|
||||
Base::Console().Message("pointPair - first: %s second: %s\n",
|
||||
Base::Console().message("pointPair - %s\n", text.c_str());
|
||||
Base::Console().message("pointPair - first: %s second: %s\n",
|
||||
DU::formatVector(first()).c_str(), DU::formatVector(second()).c_str());
|
||||
}
|
||||
|
||||
@@ -233,10 +233,10 @@ anglePoints anglePoints::toDisplayForm(DrawViewPart* dvp) const
|
||||
}
|
||||
void anglePoints::dump(const std::string& text) const
|
||||
{
|
||||
Base::Console().Message("anglePoints - %s\n", text.c_str());
|
||||
Base::Console().Message("anglePoints - ends - first: %s second: %s\n",
|
||||
Base::Console().message("anglePoints - %s\n", text.c_str());
|
||||
Base::Console().message("anglePoints - ends - first: %s second: %s\n",
|
||||
DU::formatVector(first()).c_str(), DU::formatVector(second()).c_str());
|
||||
Base::Console().Message("anglePoints - vertex: %s\n", DU::formatVector(vertex()).c_str());
|
||||
Base::Console().message("anglePoints - vertex: %s\n", DU::formatVector(vertex()).c_str());
|
||||
}
|
||||
|
||||
arcPoints::arcPoints() :
|
||||
@@ -350,17 +350,17 @@ arcPoints arcPoints::toCanonicalForm(DrawViewPart* dvp) const
|
||||
|
||||
void arcPoints::dump(const std::string& text) const
|
||||
{
|
||||
Base::Console().Message("arcPoints - %s\n", text.c_str());
|
||||
Base::Console().Message("arcPoints - radius: %.3f center: %s\n", radius,
|
||||
Base::Console().message("arcPoints - %s\n", text.c_str());
|
||||
Base::Console().message("arcPoints - radius: %.3f center: %s\n", radius,
|
||||
DrawUtil::formatVector(center).c_str());
|
||||
Base::Console().Message("arcPoints - isArc: %d arcCW: %d\n", isArc, arcCW);
|
||||
Base::Console().Message("arcPoints - onCurve: %s %s\n",
|
||||
Base::Console().message("arcPoints - isArc: %d arcCW: %d\n", isArc, arcCW);
|
||||
Base::Console().message("arcPoints - onCurve: %s %s\n",
|
||||
DrawUtil::formatVector(onCurve.first()).c_str(),
|
||||
DrawUtil::formatVector(onCurve.second()).c_str());
|
||||
Base::Console().Message("arcPoints - arcEnds: %s %s\n",
|
||||
Base::Console().message("arcPoints - arcEnds: %s %s\n",
|
||||
DrawUtil::formatVector(arcEnds.first()).c_str(),
|
||||
DrawUtil::formatVector(arcEnds.second()).c_str());
|
||||
Base::Console().Message("arcPoints - midArc: %s\n", DrawUtil::formatVector(midArc).c_str());
|
||||
Base::Console().message("arcPoints - midArc: %s\n", DrawUtil::formatVector(midArc).c_str());
|
||||
}
|
||||
|
||||
|
||||
@@ -396,7 +396,7 @@ void areaPoint::invertY()
|
||||
|
||||
void areaPoint::dump(const std::string& text) const
|
||||
{
|
||||
Base::Console().Message("areaPoint - %s\n", text.c_str());
|
||||
Base::Console().Message("areaPoint - area: %.3f center: %s\n", area,
|
||||
Base::Console().message("areaPoint - %s\n", text.c_str());
|
||||
Base::Console().message("areaPoint - area: %.3f center: %s\n", area,
|
||||
DrawUtil::formatVector(center).c_str());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user