Variables | |
| tuple | p1 = geompy.MakeVertex(0, 100, 0) |
| tuple | p2 = geompy.MakeVertex(100, 0, 0) |
| tuple | p3 = geompy.MakeVertex(0, -100, 0) |
| tuple | p4 = geompy.MakeVertex(0, 70, 0) |
| tuple | p5 = geompy.MakeVertex(0, 100, 30) |
| tuple | p6 = geompy.MakeVertex(0, 130, 0) |
| tuple | circle = geompy.MakeCircleThreePnt(p1, p2, p3) |
| tuple | cf = geompy.MakeCircleThreePnt(p4, p5, p6) |
| tuple | wire = geompy.MakeWire([cf]) |
| tuple | face = geompy.MakeFace(wire, 1) |
| tuple | idcircle = geompy.addToStudy(circle, "Circle") |
| tuple | idface = geompy.addToStudy(face, "Circular face") |
| tuple | mesh1 = smesh.Mesh(face, "Mesh on circular face") |
| int | numberOfSegments1 = 12 |
| tuple | algoReg1 = mesh1.Segment() |
| tuple | hypNbSeg1 = algoReg1.NumberOfSegments(numberOfSegments1) |
| int | maxElementArea = 30 |
| tuple | algoMef = mesh1.Triangle() |
| tuple | hypArea = algoMef.MaxElementArea(maxElementArea) |
| tuple | mesh2 = smesh.Mesh(circle, "Mesh on circular edge") |
| int | numberOfSegments2 = 12 |
| tuple | algoReg2 = mesh2.Segment() |
| tuple | hypNbSeg2 = algoReg2.NumberOfSegments(numberOfSegments2) |
| tuple PAL_MESH_043_3D.algoMef = mesh1.Triangle() |
Definition at line 68 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.algoReg1 = mesh1.Segment() |
Definition at line 61 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.algoReg2 = mesh2.Segment() |
Definition at line 78 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.cf = geompy.MakeCircleThreePnt(p4, p5, p6) |
Definition at line 43 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.circle = geompy.MakeCircleThreePnt(p1, p2, p3) |
Definition at line 42 of file PAL_MESH_043_3D.py.
Referenced by Handle(), and VISCOUS._ViscousBuilder.smoothAnalyticEdge().
| tuple PAL_MESH_043_3D.face = geompy.MakeFace(wire, 1) |
Definition at line 47 of file PAL_MESH_043_3D.py.
Referenced by SMDS_Mesh.AddFaceWithID(), SMDS_Mesh.AddPolygonalFaceWithID(), SMESH_Pattern.Apply(), StdMeshers_QuadToTriaAdaptor.CheckIntersection(), StdMeshers_Quadrangle_2D.Compute(), SMDS_Mesh.createQuadrangle(), SMDS_Mesh.createTriangle(), SMDS_Mesh.DebugStats(), SMESH_MeshEditor.DoubleNodesOnGroupBoundaries(), SMESH_MeshEditor.FindFaceInSet(), StdMeshers_ProjectionUtils.FindMatchingNodesOnFaces(), SMESH_ElementSearcherImpl.findOuterBoundary(), StdMeshers_ProjectionUtils.FindSubShapeAssociation(), SMESH_MesherHelper.FixQuadraticElements(), SMDS_VolumeTool.GetAllExistingFaces(), SMESH_ElementSearcherImpl.GetPointState(), SMESH.Controls.CoplanarFaces.IsSatisfy(), SMESH.Controls.OverConstrainedFace.IsSatisfy(), SMESH.Controls.BareBorderFace.IsSatisfy(), StdMeshers_Penta_3D.LoadIJNodes(), SMESH_MesherHelper.LoadNodeColumns(), VISCOUS._ViscousBuilder.makeLayer(), StdMeshers_Penta_3D.MakeMeshOnFxy1(), SMESH_Gen_i.Precompute(), SMESH_ProxyMesh.removeTmpElement(), SMESHGUI_RevolutionDlg.SelectionIntoArgument(), SMESHGUI_ExtrusionDlg.SelectionIntoArgument(), StdMeshers_ProjectionSource2D_i.SetSourceFace(), SMESH_MesherHelper.SetSubShape(), StdMeshers_Quadrangle_2D.Smooth(), StdMeshers_Quadrangle_2D.SplitQuad(), and VISCOUS._ViscousBuilder.updateNormals().
| tuple PAL_MESH_043_3D.hypArea = algoMef.MaxElementArea(maxElementArea) |
Definition at line 70 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.hypNbSeg1 = algoReg1.NumberOfSegments(numberOfSegments1) |
Definition at line 63 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.hypNbSeg2 = algoReg2.NumberOfSegments(numberOfSegments2) |
Definition at line 80 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.idcircle = geompy.addToStudy(circle, "Circle") |
Definition at line 50 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.idface = geompy.addToStudy(face, "Circular face") |
Definition at line 51 of file PAL_MESH_043_3D.py.
Definition at line 66 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.mesh1 = smesh.Mesh(face, "Mesh on circular face") |
Definition at line 57 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.mesh2 = smesh.Mesh(circle, "Mesh on circular edge") |
Definition at line 75 of file PAL_MESH_043_3D.py.
Definition at line 60 of file PAL_MESH_043_3D.py.
Definition at line 77 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.p1 = geompy.MakeVertex(0, 100, 0) |
Definition at line 34 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.p2 = geompy.MakeVertex(100, 0, 0) |
Definition at line 35 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.p3 = geompy.MakeVertex(0, -100, 0) |
Definition at line 36 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.p4 = geompy.MakeVertex(0, 70, 0) |
Definition at line 37 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.p5 = geompy.MakeVertex(0, 100, 30) |
Definition at line 38 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.p6 = geompy.MakeVertex(0, 130, 0) |
Definition at line 39 of file PAL_MESH_043_3D.py.
| tuple PAL_MESH_043_3D.wire = geompy.MakeWire([cf]) |
Definition at line 46 of file PAL_MESH_043_3D.py.
Referenced by SMESH_Pattern.Apply(), StdMeshers_ProjectionUtils.FindSubShapeAssociation(), StdMeshers_FaceSide.GetFaceWires(), and SMESH_Pattern.sortSameSizeWires().