From: mpv Date: Tue, 18 Jan 2022 08:27:51 +0000 (+0300) Subject: Minor corrections for the user's guide. X-Git-Tag: V9_9_0a1~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=21217df94b56054848cee8f215d2e73e5fc79ce4;p=modules%2Fshaper.git Minor corrections for the user's guide. --- diff --git a/src/ExchangePlugin/doc/images/ExportSTL.png b/src/ExchangePlugin/doc/images/ExportSTL.png index e69de29bb..dc96fbae1 100644 Binary files a/src/ExchangePlugin/doc/images/ExportSTL.png and b/src/ExchangePlugin/doc/images/ExportSTL.png differ diff --git a/src/FeaturesPlugin/doc/examples/create_normal_to_face.py b/src/FeaturesPlugin/doc/examples/create_normal_to_face.py index c89e07c6b..f212f2ae1 100644 --- a/src/FeaturesPlugin/doc/examples/create_normal_to_face.py +++ b/src/FeaturesPlugin/doc/examples/create_normal_to_face.py @@ -1,11 +1,12 @@ from salome.shaper import model import os +### Create a Box model.begin() Box_1 = model.addBox(Part_1_doc, 10, 10, 10) model.do() - -### Create BoundingBox + +### Create a top face of the box normal Normal_1 = model.getNormal(Part_1_doc, model.selection("FACE", "Box_1_1/Top")) model.do()