Arch SectionPlane
Меню прокату |
---|
Arch -> Section Plane |
Верстаки |
Arch |
Ярлик за умовчанням |
S P |
Дивись також |
None |
Description
This tool places in the current document a section plane "thing", which defines a section or view plane. The "thing" takes its placement according to the current Draft Working Plane and can be relocated and reoriented by moving and rotating it, until it describes the 2D view you want to obtain. The Section plane object will only consider a certain set of objects. Objects that are selected when you create a Section Plane will be added to that set automatically. Other objects can later be added or removed from a SectionPlane object with the Arch Add component and Arch Remove component tools, or by double-clicking the Section Plane in the tree view.
The Section Plane alone won't create any view of its objects set. For that, you must either create a Drawing DraftView to create a view on a Drawing page, a Draft Shape2DView to create a view in the 3D document itself, or a TechDraw ArchView to create a view in a TechDraw page.
How to use
- Optionally, set the Draft Working Plane to reflect the plane where you want to place the Section Plane.
- Select objects you want to be included in your section view.
- Press the
SectionPlane button or press S then P keys.
- Move/rotate the Section Plane into correct position if needed.
- Select the Section Plane if not selected already.
- 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.
- With a section plane object selected, use the Draft Shape2DView tool to create a shape object representing the section view in the document
- Create Drawing DraftViews if you are working with the Drawing Workbench, or TechDraw ArchView if you are using the TechDraw Workbench.
- 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.
Properties
- DATAOnly Solids: If this is True, non-solid objects in the set will be disregarded
- VIEWDisplay Length: The length of the section plane gizmo in the 3D view. Doesn't affect the resulting view
- VIEWDisplay Height: The height of the section plane gizmo in the 3D view. Doesn't affect the resulting view
- VIEWArrow Size: The size of the arrows of the section plane gizmo in the 3D view. Doesn't affect the resulting view
- VIEWCut View: If this is True, the whole 3D view will be cut at the location of this section plane.
- VIEWClip view: if this is True, it will clip the view to the display height and length of the section plane. This effectively turns the section plane into an orthographic camera, limiting the field of view. introduced in version 0.19
The Arch SectionPlane with the clip view option will behave like a camera, limiting the field of view.
Scripting
See also: Arch API and FreeCAD Scripting Basics.
The SectionPlane tool can be used in macros and from the Python console by using the following function:
Section = makeSectionPlane(objectslist=None, name="Section")
- Creates a
Section
object fromobjectslist
, which is a list of objects.
Example:
import FreeCAD, Draft, Arch p1 = FreeCAD.Vector(0, 0, 0) p2 = FreeCAD.Vector(2000, 0, 0) baseline = Draft.makeLine(p1, p2) baseline2 = Draft.makeLine(p1, -1*p2) Wall1 = Arch.makeWall(baseline, length=None, width=150, height=2000) Wall2 = Arch.makeWall(baseline2, length=None, width=150, height=1800) Structure = Arch.makeStructure(length=1000, width=1000, height=200) FreeCAD.ActiveDocument.recompute() BuildingPart = Arch.makeBuildingPart([Wall1, Wall2]) Floor = Arch.makeFloor([BuildingPart]) Building = Arch.makeBuilding([Floor, Structure]) Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() Section1 = Arch.makeSectionPlane([Wall1, Wall2]) Section2 = Arch.makeSectionPlane([Structure]) Section3 = Arch.makeSectionPlane([Site]) FreeCAD.ActiveDocument.recompute()
- Elements: Wall, Structure, Roof, Window, Door, Stairs, Space, Frame, Equipment; Pipe, Pipe Connector; Schedule
- Reinforcements: Rebar; Straight Rebar, UShape Rebar, LShape Rebar, Bent Shape Rebar, Stirrup Rebar, Helical Rebar
- Panels: Panel, Panel Cut, Panel Sheet, Nest
- Materials: Material, Multi-Material
- Organization: Site, Reference, Building, Floor, Building Part, Section Plane
- Axes: Axis, Axes system, Grid
- Modification: Cut with plane, Add component, Remove component, Survey
- Utilities: Component, Clone component, Split Mesh, Mesh To Shape, Select non-solid meshes, Remove Shape, Close Holes, Merge Walls, Check, Ifc Explorer, Toggle IFC Brep flag, 3 Views from mesh, Create IFC spreadsheet, Toggle Subcomponents
- Additional: Preferences, Import-Export Preferences (IFC, DAE, OBJ, JSON, 3DS); Arch API

- Installation: Linux/Unix, Windows, Mac; Getting started
- Basics: About FreeCAD, Workbenches, Preferences, Document structure, Interface Customization, Properties, Mouse Model; Tutorials
- Workbenches: Std Base; Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface workbench, TechDraw, Test Framework, Web
- Scripting: Introduction to Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, How to install macros, Gui Command, Units Modules: Builtin modules, Workbench creation, Installing more workbenches Meshes: Mesh Scripting, Mesh Module Parts: The Part Module, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt interface: PySide, Using the FreeCAD GUI, Dialog creation Parametric objects: Scripted objects Other: Code snippets, Line drawing function, Embedding FreeCAD, FreeCAD vector math library, Power users hub, Python, Macros, FreeCAD Scripting Basics, Topological data scripting