[Blender Export][DOCs] More clear how to get auto position
This commit is contained in:
parent
193f1e3a53
commit
d0c63f8a59
|
|
@ -1623,6 +1623,7 @@ Notes:
|
|||
The default light is located at (-size*3.33, size*3.33, size*5) where size is max(width, height) of the PCB.
|
||||
- `camera`: [dict] Options for the camera.
|
||||
If none specified KiBot will create a suitable camera.
|
||||
If no position is specified for the camera KiBot will look for a suitable position.
|
||||
* Valid keys:
|
||||
- `name`: [string=''] Name for the light.
|
||||
- `pos_x`: [number|string] X position [m]. You can use `width`, `height` and `size` for PCB dimensions.
|
||||
|
|
|
|||
|
|
@ -109,7 +109,8 @@ outputs:
|
|||
# The default light is located at (-size*3.33, size*3.33, size*5) where size is max(width, height) of the PCB
|
||||
add_default_light: true
|
||||
# [dict] Options for the camera.
|
||||
# If none specified KiBot will create a suitable camera
|
||||
# If none specified KiBot will create a suitable camera.
|
||||
# If no position is specified for the camera KiBot will look for a suitable position
|
||||
camera:
|
||||
# [string=''] Name for the light
|
||||
name: ''
|
||||
|
|
|
|||
|
|
@ -269,7 +269,8 @@ class Blender_ExportOptions(BaseOptions):
|
|||
The default light is located at (-size*3.33, size*3.33, size*5) where size is max(width, height) of the PCB """
|
||||
self.camera = BlenderCameraOptions
|
||||
""" [dict] Options for the camera.
|
||||
If none specified KiBot will create a suitable camera """
|
||||
If none specified KiBot will create a suitable camera.
|
||||
If no position is specified for the camera KiBot will look for a suitable position """
|
||||
self.render_options = BlenderRenderOptions
|
||||
""" *[dict] Controls how the render is done for the `render` output type """
|
||||
self.point_of_view = BlenderPointOfViewOptions
|
||||
|
|
|
|||
Loading…
Reference in New Issue