Merge pull request #2 from kiruma524/tutorial
Changes in documentation
This commit is contained in:
commit
ab1ff5b16f
@ -95,7 +95,7 @@ The `prototypes` property tree is defined in `SolidGroup` class via `PrototypeHo
|
||||
|
||||
##### Styles
|
||||
|
||||
`SolidGroup` has a `styleSheet` property that can optionally define styles at the Group's
|
||||
`VisionGroup` has a `styleSheet` property that can optionally define styles at the Group's
|
||||
level. Styles are applied to child (descendant) objects using `Vision.styles: List<String>` property.
|
||||
|
||||
|
||||
|
@ -27,6 +27,7 @@ low structure changes of this group. Unconsumed changes are discarded.
|
||||
Interface for 3-dimensional Vision.
|
||||
|
||||
### SolidGroup
|
||||
3D Visual Group with a container for templates visible inside this group. It has an interface `PrototypeHolder` which stands for being a container with prototype support.
|
||||
|
||||
* function `getPrototype(name: Name)` - get a prototype redirecting the request to the parent if prototype is not found. If prototype is a ref, then it is unfolded automatically.
|
||||
|
||||
@ -34,10 +35,16 @@ Interface for 3-dimensional Vision.
|
||||
|
||||
### SolidReferenceGroup
|
||||
|
||||
A reference Solid to reuse a template object.
|
||||
A class with `SolidReference` interface with reference `Solid`s for template objects reuse.
|
||||
|
||||
### VisionGroupBase
|
||||
|
||||
Abstract implementation of mutable group of `Vision`.
|
||||
|
||||
### RootVisionGroup
|
||||
|
||||
Non-serializable root group used to propagate manager to its children.
|
||||
|
||||
* function Vision.root(manager: VisionManager) - designate this [VisionGroup] as a root group and assign a [VisionManager] as its parent.
|
||||
### MutableVisionGroup
|
||||
|
||||
Just a mutable version of `VisionGroup`
|
Binary file not shown.
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 152 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
@ -2,6 +2,7 @@
|
||||
|
||||
Inheritance is an ability of an element to transfer a pack of properties to its `children` elements 'wrapped inside'.
|
||||
|
||||
|
||||
Properties have to be set in a specific order:
|
||||
### Main properties' inheritance:
|
||||
* styles
|
||||
@ -16,8 +17,9 @@ As for `prototypes`, this property has to be set after styles, but before parent
|
||||
* parents
|
||||
* parent's styles
|
||||
* defaults
|
||||
------------------------
|
||||
Let's take a closer look using a [Muon Monitor Visualization](demo/muon-monitor/README.md).
|
||||
|
||||
|
||||
Let's take a closer look using a [Muon Monitor Visualization](../demo/muon-monitor/README.md).
|
||||
Running the demo, we will see this:
|
||||
|
||||
![](../docs/images/inheritance-1.png)
|
||||
@ -31,15 +33,15 @@ On the right, there is a list with changeable properties.
|
||||
![](../docs/images/inheritance-properties.png)
|
||||
|
||||
Properties, which can or cannot be inherited, are these:
|
||||
* `visible` - toggles the visibility of an element. To be exact, the invisibility of an element is inheritable.
|
||||
* `visible` – toggles the visibility of an element. To be exact, the invisibility of an element is inheritable.
|
||||
If a `parent` element is invisible, other elements are invisible as well, and they cannot be changed to visible mode.
|
||||
![](../docs/images/inheritance-2-1-1.png)
|
||||
![](../docs/images/inheritance-2-1-2.png)
|
||||
|
||||
* `material` - a group of properties, which can be inherited and which can be changed in `children` elements.
|
||||
* `color` - color of an element.
|
||||
* `opacity` - a number from 0 to 1 which represents percents of opacity (0 for 0%, 1 for 100%).
|
||||
* `wireframe` - toggles the wireframe mode.
|
||||
* `material` – a group of properties, which can be inherited and which can be changed in `children` elements.
|
||||
* `color` – color of an element.
|
||||
* `opacity` – a number from 0 to 1 which represents percents of opacity (0 for 0%, 1 for 100%).
|
||||
* `wireframe` – toggles the wireframe mode.
|
||||
|
||||
Let's see how elements of the `material` group inherit changing `color` property; ***other properties of this group inherit in the same way.***
|
||||
|
||||
@ -51,7 +53,7 @@ Properties, which can or cannot be inherited, are these:
|
||||
![](../docs/images/inheritance-2-2-2.png)
|
||||
It changes only, 'bottom' and 'middle' stays the same.
|
||||
|
||||
'top' is a `parent` element as well: it has `children` - 'SC72', 'SC73', ... ,'SC80'.
|
||||
'top' is a `parent` element as well: it has `children` – 'SC72', 'SC73', ... ,'SC80'.
|
||||
Let's change the color of 'SC76':
|
||||
![](../docs/images/inheritance-2-2-3.png)
|
||||
Again, only 'SC76' has changed among other 'siblings'.
|
||||
@ -64,5 +66,5 @@ Properties, which can or cannot be inherited, are these:
|
||||
If after all those changes we set at the 'World' element grey color, changes won't disappear:
|
||||
![](../docs/images/inheritance-2-2-5.png)
|
||||
|
||||
* `rotation` - rotation of an element. Here, it is set by `x` value. It is inheritable and unable to be changed in `children` elements.
|
||||
* `position` - position of an element, cannot be inherited.
|
||||
* `rotation` – rotation of an element. Here, it is set by `x` value. It is inheritable and unable to be changed in `children` elements.
|
||||
* `position` – position of an element, cannot be inherited.
|
||||
|
@ -84,6 +84,7 @@ interface SolidReference{
|
||||
fun getPropertyValue(name,inherit,includeStyles,includeDefaults): Value?
|
||||
}
|
||||
VisionGroup <---- SolidReference
|
||||
SolidReferenceGroup -- SolidReference
|
||||
|
||||
class SolidReferenceGroup{
|
||||
val refName: Name
|
||||
@ -93,6 +94,7 @@ class SolidReferenceGroup{
|
||||
fun getPropertyValue(name,inherit,includeStyles,includeDefaults): Value?
|
||||
}
|
||||
VisionBase <-- SolidReferenceGroup
|
||||
VisionGroup <-- SolidReferenceGroup
|
||||
|
||||
interface MutableVisionGroup{
|
||||
fun onStructureChanged(owner, block)
|
||||
|
@ -23,7 +23,7 @@ internal data class MetaListener(
|
||||
|
||||
/**
|
||||
* A full base implementation for a [Vision]
|
||||
* @param parent the parent object for this vision. Could ve set later. Not serialized.
|
||||
* @param parent the parent object for this vision. Could've set later. Not serialized.
|
||||
*/
|
||||
@Serializable
|
||||
@SerialName("vision")
|
||||
|
Loading…
Reference in New Issue
Block a user