Шаблоны чертежей

From FreeCAD Documentation
Revision as of 10:34, 31 July 2016 by Bravikov (talk | contribs) (Created page with "Где: * X1a — расстояние по оси X между левой границей листа и левой стороной основной надписи. * Y1a...")

Создание SVG-шаблонов

Создавать шаблоны для модуля чертежей (Drawing) легко и приятно. Смотрите также руководство по созданию шаблонов чертежей. Шаблон — это файл в формате SVG, который можно создать в любой программе способной экспортировать SVG, например Inkscape. Необходимо соблюдать только два правила:

  • 1 пиксель = 1 миллиметру.
  • Где-нибудь в SVG-код, там где будет размещен чертеж, требуется вставить (например, в конец файла перед тегом </svg>) следующую строку:
 <!-- DrawingContent -->

Дополнительно, начиная с FreeCAD 0.14 (ревизия 2995), в SVG-коде можно указать положение рамки и основной надписи. Так FreeCAD будет знать где можно располагать проекции, а где нет.

Чтобы задать положение рамки, необходимо вставить следующую строку перед тегом <metadata>:

<!-- Working space X1 Y1 X2 Y2 -->

Где:

  • X1 — расстояние по оси X между левой границей листа и левой стороной рамки.
  • Y1 — расстояние по оси Y между верхней границей листа и верхней стороной рамки.
  • X2 — расстояние по оси X между левой границей листа и правой стороной рамки.
  • Y2 — расстояние по оси Y между верхней границей листа и нижней стороной рамки.

Чтобы задать положение основной надписи, необходимо вставить следующую строку перед тегом <metadata>:

<!-- Title block X1a Y1a X2a Y2a -->

Где:

  • X1a — расстояние по оси X между левой границей листа и левой стороной основной надписи.
  • Y1a — расстояние по оси Y между верхней границей листа и верхней стороной основной надписи.
  • X2a — расстояние по оси X между левой границей листа и правой стороной основной надписи.
  • Y2a — расстояние по оси Y между верхней границей листа и нижней стороной основной надписи.
  • X1a <= X1 или X2a >= X2
  • Y1a <= Y1 или Y2a >= Y2

The following is an example of the code that defines the Working space and Title block areas that are to be inserted before the <metadata tag. You needn't specify a title block, but if you do it must be defined on the next line immediately following the Working space:

<!-- Working space X1 Y1 X2 Y2 -->
<!-- Title block X1a Y1a X2a Y2a -->

In order to enable up to scale printing, the real word size has to be given in the width and height attributes of the SVG-Tag. The size of the document in user units, (px), has to be given in the viewBox attribute.

The following is to be formatted like the example below where:

  • xxx = pixel width
  • yyy = pixel height
width="xxxmm"
height="yyymm"
viewBox="0 0 xxx yyy"
  • Several custom attributes can be placed in templates. The list of currently supported attributes is available on the Svg Namespace page.

DXF templates

Since version 0.15, FreeCAD can reliably export a Drawing page to the DXF format. This system also uses templates. If a dxf file with the same name is found in the same folder as the SVG template used for a page, it will be used for export. If not, a default empty template is created on the fly.

Consequently, if you create your own SVG templates, and wish to be able to export the Drawing pages that you create with it to DXF, you just need to create a corresponding DXF template, and save it with the same name in the same folder.

DXF templates can be created with any application that produces DXF files, such as LibreCAD. You then need to edit them with a text editor, and add two additional lines, one at the beginning or end of the BLOCKS section, and another at the beginning or end of the ENTITIES section, which are where FreeCAD will add its own blocks and entities.

A very simple template looks like this:

999
FreeCAD DXF exporter v0.15
0
SECTION
2
HEADER
9
$ACADVER
1
AC1009
0
ENDSEC
0
SECTION
2
BLOCKS
$blocks
0
ENDSEC
0
SECTION
2
ENTITIES
$entities
0
ENDSEC
0
EOF

The above template doesn't contain any entity. If you create your DXF file with a CAD application, there will likely be much more content inside the HEADER, BLOCKS and ENTITIES sections.

The two lines that FreeCAD will be looking for are "$blocks" and "$entities". They must exist in the template, and they must be placed on their own line. You can choose to place them right after the BLOCKS or ENTITIES line, which is easier (just use the "search" function of your text editor to find them), or at the end, just before the "0 ENDSEC" lines (beware that there is one for each SECTION, make sure to use the ones relative to BLOCKS and ENTITIES). The latter method will place the FreeCAD objects after the objects defined in the template, which might be more logical.

A3 templates

A3 Classic:

A3 Clean:

A3 Modern:

A3 Showcase:

A3 Landscape english:

A4 Templates

A4 Landscape english:

A4 Portrait 1 english:

US Letter Templates

US Letter landscape:


US Letter portrait:

US Letter ds Landscape:

US Legal ds Landscape:

US Ledger ds Landscape:

Other standards available