mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
typo-fix by Kunda
http://www.salome-platform.org/forum/forum_10/195000978
This commit is contained in:
parent
b9104d97c5
commit
8f00089bdf
@ -3,7 +3,7 @@
|
||||
\page annotation_page Shape annotation
|
||||
|
||||
<b> Annotation </b> functionality allows showing in the viewer special user-defined text label connected to corresponding part of a CAD model with a line.
|
||||
Annotation text is always parallel to the screen and horizontal. It is is not zoomed or rotated when a 3D scene is zoomed or rotated by the user.
|
||||
Annotation text is always parallel to the screen and horizontal. It is not zoomed or rotated when a 3D scene is zoomed or rotated by the user.
|
||||
The annotation text is defined using UTF-8 encoding and thus support any Unicode characters.
|
||||
|
||||
There are several algorithms for the annotation position calculation during the scene manipulations (panning, zooming, rotation):
|
||||
|
@ -233,8 +233,8 @@ ShapeProcess.SameParameter.Tolerance3d : 1.e-7
|
||||
! FixShape.FixOrientationMode : Mode for fixing face orientation (default - -1, yes - 1 , no - 0).
|
||||
! FixShape.FixMissingSeamMode : Mode for fixing face missing seam (default - -1, yes - 1 , no - 0).
|
||||
! FixShape.FixSmallAreaWireMode : Mode for fixing small area wires (default - -1, yes - 1 , no - 0).
|
||||
! FixShape.ModifyTopologyMode : Mode allowing of modifing of topology (default - 0, yes - 1 , no - 0).
|
||||
! FixShape.ModifyGeometryMode : Mode allowing of modifing of geometry (default - 1, yes - 1 , no - 0).
|
||||
! FixShape.ModifyTopologyMode : Mode allowing for modifying of topology (default - 0, yes - 1 , no - 0).
|
||||
! FixShape.ModifyGeometryMode : Mode allowing for modifying of geometry (default - 1, yes - 1 , no - 0).
|
||||
! FixShape.ClosedWireMode : Mode defining whether the wire is to be closed. (default - 1, yes - 1 , no - 0).
|
||||
! FixShape.PreferencePCurveMode : Mode defining of preference of 2d representation (default - 1, yes - 1 , no - 0).
|
||||
! FixShape.FixReorderMode : Mode for fixing of order of the edges in the wire (default - -1, yes - 1 , no - 0).
|
||||
|
@ -657,7 +657,7 @@ static Standard_Boolean MergeEdges(const TopTools_SequenceOfShape& SeqEdges,
|
||||
break;
|
||||
}
|
||||
if(NeedUnion) {
|
||||
MESSAGE ("can not make analitical union => make approximation");
|
||||
MESSAGE ("can not make analytical union => make approximation");
|
||||
TopoDS_Edge E = GlueEdgesWithPCurves(aChain, VF, VL);
|
||||
aChain.SetValue(1,E);
|
||||
}
|
||||
|
@ -696,7 +696,7 @@ TopoDS_Shape BlockFix_UnionFaces::Perform(const TopoDS_Shape& Shape)
|
||||
aContext->Replace(aContext->Apply(aFace),aResult);
|
||||
|
||||
ShapeFix_Face sff (aResult);
|
||||
//Intializing by tolerances
|
||||
//Initializing by tolerances
|
||||
sff.SetPrecision(myTolerance);
|
||||
sff.SetMinTolerance(tol);
|
||||
Standard_Real MaxTol = DefineMaxTolerance(aResult);
|
||||
|
@ -915,7 +915,7 @@ void GEOMImpl_Block6Explorer::InitByTwoFaces (const TopoDS_Shape& theFace1,
|
||||
}
|
||||
|
||||
// 1.2. Ordered vertices and edges of the second face we temporarily store
|
||||
// in arrays, to find for them rigth location in <myVertices> on the Step 2.
|
||||
// in arrays, to find for them the right location in <myVertices> in Step 2.
|
||||
|
||||
// declare arrays
|
||||
TopTools_Array1OfShape aVertis2(1,4); // ordered vertices of the second face
|
||||
|
@ -1878,7 +1878,7 @@ Handle(TColStd_HSequenceOfTransient)
|
||||
try {
|
||||
OCC_CATCH_SIGNALS;
|
||||
if (!GetSolver()->ComputeFunction(aFunction)) {
|
||||
SetErrorCode("Pipe with defferent section driver failed");
|
||||
SetErrorCode("Pipe with different section driver failed");
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
@ -238,7 +238,7 @@ void GEOMToolsGUI_TransparencyDlg::SliderHasMoved(int value)
|
||||
//=================================================================================
|
||||
// function : SetTransparency()
|
||||
// purpose : Called when value of slider change
|
||||
// : or the first time as initilisation
|
||||
// : or the first time as initialisation
|
||||
//=================================================================================
|
||||
void GEOMToolsGUI_TransparencyDlg::SetTransparency()
|
||||
{
|
||||
|
@ -74,7 +74,7 @@ private:
|
||||
|
||||
QWidget* getControl( const QString& );
|
||||
void setValue( QWidget*, const QString& ); // initialize the given control in the proper way
|
||||
// (analize its class and convert the value string)
|
||||
// (analyze its class and convert the value string)
|
||||
QString getValue( QWidget* ) const; // retrieve value of the control in the proper way
|
||||
QString getText( QWidget* ) const; // retrieve text of the control (for spin-boxes only)
|
||||
|
||||
|
@ -47,7 +47,7 @@ class ShHealOper_CloseContour : public ShHealOper_Tool
|
||||
Standard_EXPORT ShHealOper_CloseContour() : ShHealOper_Tool() {}
|
||||
|
||||
Standard_EXPORT ShHealOper_CloseContour (const TopoDS_Shape& theShape);
|
||||
//Initalizes by whole shape.
|
||||
//Initializes by whole shape.
|
||||
|
||||
Standard_EXPORT virtual void Init(const TopoDS_Shape& theShape);
|
||||
//Method for initialization by whole shape.
|
||||
|
Loading…
Reference in New Issue
Block a user