Arch Site/cs: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
Line 14: Line 14:
* Po vytvoření staveniště můžete přidávat další objekty pomocí myši přetáhnutím a upuštěním (drag and drop) na požadované místo v panelu stromu nebo použitím nástroje [[Image:Arch Add.png|16px]] [[Arch Add/cs|Přidat]]
* Po vytvoření staveniště můžete přidávat další objekty pomocí myši přetáhnutím a upuštěním (drag and drop) na požadované místo v panelu stromu nebo použitím nástroje [[Image:Arch Add.png|16px]] [[Arch Add/cs|Přidat]]
* Odstranit objekty ze staveniště můžete podobně myší přetáhnutím a upuštěním objektu mimo panelu stromu nebo použitím nástroje [[Image:Arch Remove.png|16px]] [[Arch Remove/cs|Odebrat]].
* Odstranit objekty ze staveniště můžete podobně myší přetáhnutím a upuštěním objektu mimo panelu stromu nebo použitím nástroje [[Image:Arch Remove.png|16px]] [[Arch Remove/cs|Odebrat]].

==Properties==

* {{PropertyData|Terrain}}: The base terrain of this site
* {{PropertyData|Address}}: The street and housenumber of this site
* {{PropertyData|Postal Code}}: The postal or zip code of this site
* {{PropertyData|City}}: The city of this site
* {{PropertyData|Country}}: The country of this site
* {{PropertyData|Latitude}}: The latitude of this site
* {{PropertyData|Longitude}}: The longitude of this site
* {{PropertyData|Url}}: An url that shows this site in a mapping website
* {{PropertyData|Projected Area}}: The area of the projection of this object onto the XY plane
* {{PropertyData|Perimeter}}: The perimeter length of this terrain
* {{PropertyData|Addition Volume}}: The volume of earth to be added to this terrain
* {{PropertyData|Subtraction Volume}}: The volume of earth to be removed from this terrain
* {{PropertyData|Extrusion Vector}}: An extrusion vector to use when performing boolean operations
* {{PropertyData|Remove Splitter}}: Remove splitters from the resulting shape

== Typical workflow ==

Start by creating an object that represents your terrain. It must be an open surface, not a solid. For example, it is easy to import mesh data, that can be turned into a Part Shape from menu '''Part -> Create Shape from Mesh...'''. Then, create a Site object, and set its '''Terrain''' property to the Part we just created:

[[Image:Arch site example 01.jpg]]

Create some volumes (they must be solids) that represent the areas that you wish to be excavated or filled. Double-click the Site object in the Tree View, and add these volumes to the Additions or Subtractions groups. Click OK.

[[Image:Arch site example 02.jpg]]

The site geometry will be recomputed and the areas, perimeter, and volumes properties recalculated.

[[Image:Arch site example 03.jpg]]


==Skriptování==
==Skriptování==

Revision as of 19:27, 4 October 2016

Arch Site

Umístění Menu
Arch → Site
Pracovní stoly
Arch
Výchozí zástupce
S I
Představen ve verzi
-
Viz také
Arch Floor, Arch Building

Popis

Staveniště je speciální typ skupinového objektu FreeCADu zvlášť vhodný pro zobrazení celého staveniště nebo terénu. Většinou se používá pro uspořádání modelu obsahujícího objekty Stavba

Použití

  1. Volitelně lze vybrat jeden nebo více objektů, které lze vložit do Vašeho nového staveniště
  2. Stiskněte tlačítko Staveniště nebo klávesy S a I

Volby

  • Po vytvoření staveniště můžete přidávat další objekty pomocí myši přetáhnutím a upuštěním (drag and drop) na požadované místo v panelu stromu nebo použitím nástroje Přidat
  • Odstranit objekty ze staveniště můžete podobně myší přetáhnutím a upuštěním objektu mimo panelu stromu nebo použitím nástroje Odebrat.

Properties

  • ÚdajeTerrain: The base terrain of this site
  • ÚdajeAddress: The street and housenumber of this site
  • ÚdajePostal Code: The postal or zip code of this site
  • ÚdajeCity: The city of this site
  • ÚdajeCountry: The country of this site
  • ÚdajeLatitude: The latitude of this site
  • ÚdajeLongitude: The longitude of this site
  • ÚdajeUrl: An url that shows this site in a mapping website
  • ÚdajeProjected Area: The area of the projection of this object onto the XY plane
  • ÚdajePerimeter: The perimeter length of this terrain
  • ÚdajeAddition Volume: The volume of earth to be added to this terrain
  • ÚdajeSubtraction Volume: The volume of earth to be removed from this terrain
  • ÚdajeExtrusion Vector: An extrusion vector to use when performing boolean operations
  • ÚdajeRemove Splitter: Remove splitters from the resulting shape

Typical workflow

Start by creating an object that represents your terrain. It must be an open surface, not a solid. For example, it is easy to import mesh data, that can be turned into a Part Shape from menu Part -> Create Shape from Mesh.... Then, create a Site object, and set its Terrain property to the Part we just created:

Create some volumes (they must be solids) that represent the areas that you wish to be excavated or filled. Double-click the Site object in the Tree View, and add these volumes to the Additions or Subtractions groups. Click OK.

The site geometry will be recomputed and the areas, perimeter, and volumes properties recalculated.

Skriptování

Nástroj Staveniště může být využit v makrech a z konzoly Pythonu použitím následující funkce:

makeSite ([objectslist])

vytvoří staveniště včetně objektů ze seznamu objectslist

Příklad:

import Arch
Arch.makeSite()