Fix typos

Found via `codespell -q 3 -L aci,addmin,ake,aline,alle,alledges,alocation,als,ang,anid,anormal,aply,apoints,ba,beginn,behaviour,bloaded,bottome,brushin,bu,byteorder,calculater,cancelled,cancelling,cas,cascade,centimetre,childrens,childs,colour,colours,commen,connexion,currenty,documentin,dof,doubleclick,dum,eiter,elemente,ende,feld,finde,findf,findn,fle,freez,graphin,hist,iff,incrementin,indexin,indicies,initialisation,initialise,initialised,initialises,initialisiert,inout,ist,itsel,kilometre,leadin,localy,lod,mantatory,methode,metres,millimetre,modell,nd,noe,normale,normaly,nto,numer,oce,oder,ontop,orgin,orginx,orginy,ot,pard,parm,parms,pres,programm,que,rady,recurrance,renderin,rin,ro,rougly,sectionin,seperator,serie,shs,sinc,siz,som,strack,substraction,te,technic,thist,thru,tread,tru,ue,uint,unter,uptodate,vas,vertexes,vew,wallthickness,whitespaces -S "./.git,*.po,*.ts,*.pdf,./ChangeLog.txt,./src/3rdParty,./src/Mod/Assembly/App/opendcm,./src/CXX,./src/zipios++,./src/Base/swig*,./src/Mod/Robot/App/kdl_cp,./src/Mod/Import/App/SCL,./src/WindowsInstaller,./src/Doc/FreeCAD.uml,./src/Base/StackWalker.cpp,./build/doc/SourceDoc,./tools/build/WindowsInstaller/lang,./src/Mod/TechDraw/Templates/locale"`
This commit is contained in:
Luz Paz
2025-03-31 15:48:29 -04:00
committed by Benjamin Nauck
parent 05e76dd624
commit 97e172334b
12 changed files with 21 additions and 21 deletions

View File

@@ -44,14 +44,14 @@ FemPostBranchFilter::FemPostBranchFilter()
(long(0)),
"Pipeline",
App::Prop_None,
"Selects what the output of the branch itself is\n"
"In passthrough the branchs output is equal its imput.\n"
"In append, all child filter outputs gets appended as the branches output");
"Selects what the output of the branch itself is.\n"
"In passthrough, the branch's output is equal to its input.\n"
"In append, all child filter outputs get appended as the branch's output");
Output.setEnums(OutputEnums);
/* We always have a passthrough filter. This allows to connect our children
* dependend on the Mode setting, without worrying about the connection to our input
* dependent on the Mode setting, without worrying about the connection to our input
* filter. We do not care if the input filter changes, as this is affecting only the passthrough
* input and does not affect our child connections.
* Dependent on our output mode, the passthrough is also used as output, but potentially

View File

@@ -185,8 +185,8 @@ int FemFrameSourceAlgorithm::RequestData(vtkInformation*,
auto time = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEP());
auto frames = getFrameValues();
// we have float values, so be aware of roundign erros. lets subtract the searched time and
// then use the smalles value
// we have float values, so be aware of rounding errors. lets subtract the searched time and
// then use the smallest value
for (auto& frame : frames) {
frame = std::abs(frame - time);
}
@@ -257,7 +257,7 @@ bool FemPostPipeline::allowObject(App::DocumentObject* obj)
return true;
}
// and all standart Post objects the group can handle
// and all standard Post objects the group can handle
return FemPostGroupExtension::allowObject(obj);
}
@@ -360,7 +360,7 @@ void FemPostPipeline::scale(double s)
App::DocumentObjectExecReturn* FemPostPipeline::execute()
{
// we fake a recalculated data oject, so that the viewprovider updates
// we fake a recalculated data object, so that the viewprovider updates
// the visualization. We do not want to do this in onChange, as it
// could theoretically be long running
if (m_data_updated) {
@@ -487,7 +487,7 @@ void FemPostPipeline::onChanged(const Property* prop)
FemPostFilter* nextFilter = obj;
nextFilter->getFilterInput()->RemoveAllInputConnections(0);
// handle input modes (Parallel is seperated, alll other settings are serial, just in
// handle input modes (Parallel is separated, all other settings are serial, just in
// case an old document is loaded with "custom" mode, idx 2)
if (Mode.getValue() == Fem::PostGroupMode::Parallel) {
// parallel: all filters get out input

View File

@@ -222,7 +222,7 @@ PyObject* FemPostPipelinePy::load(PyObject* args)
}
else {
std::string error = std::string(
"Multistep load requries 4 arguments: ResultList, ValueList, unit, type");
"Multistep load requires 4 arguments: ResultList, ValueList, unit, type");
throw Base::TypeError(error);
}
}

View File

@@ -50,7 +50,7 @@ public:
protected:
virtual void setupTaskDialog(TaskDlgPost* dlg) override;
// change default group drag/drop behaviour sligthly
// change default group drag/drop behaviour slightly
bool acceptReorderingObjects() const override;
bool canDragObjectToTarget(App::DocumentObject* obj,
App::DocumentObject* target) const override;

View File

@@ -56,7 +56,7 @@ protected:
void updateFunctionSize();
virtual void setupTaskDialog(TaskDlgPost* dlg) override;
// change default group drag/drop behaviour sligthly
// change default group drag/drop behaviour slightly
bool acceptReorderingObjects() const override;
bool canDragObjectToTarget(App::DocumentObject* obj,
App::DocumentObject* target) const override;

View File

@@ -71,7 +71,7 @@ def purge_results(analysis):
# result pipeline and filter
for m in analysis.Group:
if is_of_type(m, "Fem::FemPostPipeline"):
# delete the pipeline itself (it removes all fiters itself)
# delete the pipeline itself (it removes all filters itself)
analysis.Document.removeObject(m.Name)
analysis.Document.recompute()