Changes between Version 32 and Version 33 of UserGuideGit


Ignore:
Timestamp:
Sep 25, 2008, 12:32:00 PM (16 years ago)
Author:
Frédéric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UserGuideGit

    v32 v33  
    99  * [#Mosaicmode Mosaic mode]
    1010  * [#Presetmode Preset mode]
     11   * [#Customtemplates Custom templates]
    1112 * [#Referencemanual Reference manual]
    1213  * [#Mainwindow Main window]
     
    9495
    9596This mode is very simple, and does not use any particular settings; it just shoots at all positions defined in the selected template. The only thing to do is to set the ''home'' position of the head (zero), which will be the reference for the template positions. In case the camera/lens can't be moved in all positions, it is possible to set some limits, to avoid potential colisions.
     97
     98==== Custom templates ====
     99
     100Some default preset templates are provided with the software, but it is possible to add your own. For that, you need to create a xml file which describes them. Here is the structure:
     101
     102{{{
     103<?xml version="1.0" ?>
     104<papywizard>
     105    <preset name="My cutom preset">
     106        <tooltip>
     107            20D + 50mm
     108            12 picts @ +55°
     109            20 picts @ +40°
     110            50 picts @  10°/-10°
     111            20 picts @ -40°
     112            55 picts @ -70°
     113        </tooltip>
     114        <shoot>
     115            <pict yaw="0." pitch="55." />
     116            <pict yaw="30." pitch="55." />
     117            <pict yaw="60." pitch="55." />
     118            <pict yaw="90." pitch="55." />
     119            ...
     120        </shoot>
     121    </preset>
     122    <preset name="Another cutom preset">
     123    ....
     124     </preset>
     125</papywizard>
     126}}}
     127
     128Where:
     129 * {{{name}}}: name used to present the preset in the Combobox
     130 * {{{tooltip}}}: information for that preset (shown in the information presets template windows)
     131 * {{{shoot}}}: list of all positions to shoot (described with {{{yaw/pitch}}} attributes of {{{pict}}} tag)
    96132
    97133== Reference manual ==