| 97 | |
| 98 | ==== Custom templates ==== |
| 99 | |
| 100 | Some 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 | |
| 128 | Where: |
| 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) |