Arch Plan de coupe

From FreeCAD Documentation
Revision as of 10:00, 6 May 2017 by Mario52 (talk | contribs)

Arch Plan de coupe

Emplacement du menu
Architecture → Plan de coupe
Ateliers
Arch
Raccourci par défaut
S P
Introduit dans la version
-
Voir aussi
Aucun

Description

Cet outil place dans le document courant un objet qui définit un plan de coupe ou une vue. Le plan de coupe adopte l'orientation du plan de travail courant et peut être déplacé et réorienté jusqu'à ce qu'il décrive la vue 2D que vous souhaitez obtenir. L'objet plan de coupe ne calculera que les objets qui ont été sélectionnés lorsqu'il a été créé. Des objets peuvent ensuite être ajoutés ou supprimés d'un plan de coupe avec les outils Arch Add et Arch Remove, ou cliquez deux fois sur Section Plane dans la vue 3D.

L'outil Section Plane utilisé seul ne créera aucune vue des objets définis. Pour cela, vous devez créer une Vue brouillon pour créer une vue dans la page Drawing page, utilisez Draft Shape2DView pour créer une vue dans le document 3D lui-même, ou TechDraw ArchView pour créer une vue dans une TechDraw page.

Utilisation

  1. Optionally, set the Draft Working Plane to reflect the plane where you want to place the Section Plane
  2. Select objects you want to be included in your section view
  3. Press the SectionPlane button or press S then P keys
  4. Move/rotate the Section Plane into correct position if needed
  5. Select the Section Plane if not selected already
  6. Use either Drawing DraftView, Draft Shape2DView or TechDraw ArchView to create a view

Options

  • The Section plane object will only consider a certain set of objects, not all the objects of the document. Objects can be added or removed from a SectionPlane object by using the Arch Add and Arch Remove tools, or by double-clicking the Section Plane in the tree view, selecting objects either in the list of in the 3D scene, and pressing the add or remove buttons.
  • Après avoir sélectionné un plan de coupe, utilisez l'outil de Draft Projection 2D d'une forme pour créer un objet shape qui représente l'affichage du plan de coupe dans le document

  • The Section Plane can also be used to show the entire 3D view cut by an infinite plane. This is only visual, and won't affect the geometry of the objects being cut.

Propriétés

  • DonnéesOnly Solids: If this is True, non-solid objects in the set will be disregarded
  • VueDisplay Length: The length of the section plane gizmo in the 3D view. Doesn't affect the resulting view
  • VueDisplay Height: The height of the section plane gizmo in the 3D view. Doesn't affect the resulting view
  • VueArrow Size: The size of the arrows of the section plane gizmo in the 3D view. Doesn't affect the resulting view
  • VueCut View: If this is true, the whole 3D view will be cut at the location of this section plane (experimental).

Script

L'outil plan de coupe peut servir dans une macro et à partir de la console Python en utilisant la fonction suivante :

makeSectionPlane ([objectslist])
Crée une section plan en incluant une liste d'objets

Exemple :

import FreeCAD, Draft, Arch
trace = Draft.makeLine(FreeCAD.Vector (0, 0, 0),FreeCAD.Vector (2, 2, 0))
wall = Arch.makeWall(trace,width=0.1,height=1,align="Center")
Arch.makeSectionPlane([wall])