Fix various typos

This commit is contained in:
luzpaz
2025-08-12 16:19:00 +00:00
committed by Chris Hennes
parent 7c2f59b773
commit a5a59ff2e3
7 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@@ -17,7 +17,7 @@
| ---------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| Preflight Checks | Catch and flag obvious problems before generating output | Sanity check can catch some errors. Requires running the check manually. |
| Post-Processor Customization | Control modal vs explicit axes, tool change blocks, headers/footers | Customization with flags in the Job output tab. Posts are inconsistent. |
| Advanced Customizatoin | Allow customization of output beyond the trivial. Allow customizing the post with an editing/customization tool | Requires editing the python file.<br>Requires copying the post file to a specific location. Clunky and unintuitive |
| Advanced Customization | Allow customization of output beyond the trivial. Allow customizing the post with an editing/customization tool | Requires editing the python file.<br>Requires copying the post file to a specific location. Clunky and unintuitive |
| Subprogram Support | Generate G-code with subprograms and subroutines | NONE |
| Setup Page Generation | Instructions, checklists, warnings, and errors for the operator | DONE |
| G-code Decomposition | Break arcs/canned cycles into linear segments or explicit moves | NONE |

View File

@@ -4,7 +4,7 @@
| Feature | Description | Assessment |
| ---------------------- | ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Toolpath Visualization | Display toolpath in context of model and stock | Done. Arrow indicators on segments are too small to be useful. |
| Toolpath Inspection | Allow user to inspect/explore segments of the toolpath | Done. <br>Inspection shows the raw internal comands for the segments. These commands are not in the correct unit schema and do not reflect the postprocessed code. |
| Toolpath Inspection | Allow user to inspect/explore segments of the toolpath | Done. <br>Inspection shows the raw internal commands for the segments. These commands are not in the correct unit schema and do not reflect the postprocessed code. |
| | | |
---

View File

@@ -167,7 +167,7 @@ class SelectGroup(gui_base.GuiCommandNeedsSelection):
"""Set icon, menu and tooltip."""
return {"Pixmap": "Draft_SelectGroup",
"MenuText": QT_TRANSLATE_NOOP("Draft_SelectGroup", "Select Group"),
"ToolTip": QT_TRANSLATE_NOOP("Draft_SelectGroup", "Selects the contents of selected groups. For selected non-group objects, the contents of the goup they are in are selected.")}
"ToolTip": QT_TRANSLATE_NOOP("Draft_SelectGroup", "Selects the contents of selected groups. For selected non-group objects, the contents of the group they are in are selected.")}
def Activated(self):
"""Execute when the command is called."""

View File

@@ -116,7 +116,7 @@ public:
bool linesAreParallel() const;
protected:
// Hint parameter helps sort out coumpound shapes by specifying a subelement type
// Hint parameter helps sort out compound shapes by specifying a subelement type
// use hint = TopAbs_COMPOUND to give no hint
TopoDS_Shape getShape(App::DocumentObject* obj,
const char* subName,

View File

@@ -86,7 +86,7 @@ CmdPartDesignBody::CmdPartDesignBody()
sAppModule = "PartDesign";
sGroup = QT_TR_NOOP("PartDesign");
sMenuText = QT_TR_NOOP("New Body");
sToolTipText = QT_TR_NOOP("Creates a new body and activtes it");
sToolTipText = QT_TR_NOOP("Creates a new body and activates it");
sWhatsThis = "PartDesign_Body";
sStatusTip = sToolTipText;
sPixmap = "PartDesign_Body";

View File

@@ -1709,7 +1709,7 @@ TopoDS_Wire DrawComplexSection::closeProfileForCut(const TopoDS_Wire& profileWir
TopoDS_Edge circleEdge = BRepBuilderAPI_MakeEdge(circleArc);
// replace first and last edges and add cicular arc
// replace first and last edges and add circular arc
std::vector<TopoDS_Edge> oldProfileEdges = DU::shapeToVector(flatWire);
std::vector<TopoDS_Edge> newProfileEdges;
newProfileEdges.emplace_back(firstReplacementEdge);