You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/presentation/4.0/model.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1525,8 +1525,8 @@ A floating point number giving the time of the point in seconds from the beginni
1525
1525
This property sets the strength or brightness of a Light. The `value` of the referenced Quantity indicates the desired intensity on a linear scale between 0.0 (no brightness) and 1.0 (as bright as the client will render). If this property is not specified, then the default intensity value is client-dependent.
1526
1526
1527
1527
The value of this property _MUST_ be a Quantity.
1528
-
The `unit` property of the Quantity _MUST_ be `relative`.
1529
-
The `value` property of the Quantity _MUST_ be between 0.0 and 1.0.
1528
+
The value of the `unit` property of the Quantity _MUST_ be `relative`.
1529
+
The value of the `quantityValue` property of the Quantity _MUST_ be between 0.0 and 1.0.
1530
1530
1531
1531
* A Light _SHOULD_ have the `intensity` property.<br/>
1532
1532
Clients _SHOULD_ process the `intensity` property on a Light.
@@ -2387,7 +2387,7 @@ The value _MUST_ be a string, and the value _MUST_ be a URI.
2387
2387
### spatialScale
2388
2388
{: #spatialScale}
2389
2389
2390
-
A single Quantity that defines a real-world scale factor for the coordinate units of a Canvas or Scene. For a Canvas, this defines the physical distance corresponding to the length of a single Canvas coordinate unit. A Canvas with a `width` of 5000 and a `spatialScale` with `quantityValue` 0.00008 represents a physical space 0.4 meters wide. For a Scene, this defines the physical distance corresponding to the XYZ coordinate units, or in other words, the physical distance length of a unit vector in the 3D coordinate space. The value of `unit`_MUST_ be a length unit. In this specification, the only length unit defined is `m`, i.e., meters. Unless other values are defined externally as an [extension][prezi30-ldce], the value of `unit`_SHOULD_ always be `m`.
2390
+
A single Quantity that defines a real-world scale factor for the coordinate units of a Canvas or Scene. For a Canvas, this defines the physical distance corresponding to the length of a single Canvas coordinate unit. A Canvas with a `width` of 5000 and a `spatialScale` with `quantityValue`of 0.00008 and a `unit` of `m` represents a physical space 0.4 meters wide. For a Scene, this defines the physical distance corresponding to the XYZ coordinate units, or in other words, the physical distance length of a unit vector in the 3D coordinate space. The value of `unit`_MUST_ be a length unit. In this specification, the only length unit defined is `m`, i.e., meters. Unless other values are defined externally as an [extension][prezi30-ldce], the value of `unit`_SHOULD_ always be `m`.
2391
2391
2392
2392
To assert a `spatialScale` for a Content Resource, the resource _MUST_ first be painted into a Container and the `spatialScale` is asserted on that Container. For example, a 3d model would be painted into a Scene, and then `spatialScale` is asserted on the Scene.
2393
2393
@@ -2399,10 +2399,10 @@ To assert a `spatialScale` for a Content Resource, the resource _MUST_ first be
2399
2399
{% include api/code_header.html %}
2400
2400
```json-doc
2401
2401
{
2402
-
"type": "Scene",
2402
+
"type": "Canvas",
2403
2403
"spatialScale": {
2404
2404
"type": "Quantity",
2405
-
"quantityValue": 22.0,
2405
+
"quantityValue": 0.00008,
2406
2406
"unit": "m"
2407
2407
}
2408
2408
}
@@ -2584,7 +2584,7 @@ The value _MUST_ be an array of JSON objects.
2584
2584
### temporalScale
2585
2585
{: #temporalScale}
2586
2586
2587
-
A single Quantity that defines a multiplier or scale factor for the `duration` property of a Container, indicating that one second in "Container time" represents some other real world duration. A Canvas with a `duration` of 450 seconds and a `temporalScale` with `quantityValue` 1000 represents a real-world duration of 450,000 seconds (5.2 days), for example a time-lapse video of a growing plant. The value of `unit`_MUST_ be a time unit. In this specification, the only time unit defined is `s`, i.e., seconds. Unless other values are defined externally as an [extension][prezi30-ldce], the value of `unit`_SHOULD_ always be `s`.
2587
+
A single Quantity that defines a multiplier or scale factor for the `duration` property of a Container, indicating that one second in "Container time" represents some other real world duration. A Canvas with a `duration` of 450 seconds and a `temporalScale` with `quantityValue`of 1000 and a `unit` of `s` represents a real-world duration of 450,000 seconds (5.2 days), for example a time-lapse video of a growing plant. The value of `unit`_MUST_ be a time unit. In this specification, the only time unit defined is `s`, i.e., seconds. Unless other values are defined externally as an [extension][prezi30-ldce], the value of `unit`_SHOULD_ always be `s`.
2588
2588
2589
2589
To assert a `temporalScale` for a Content Resource, the resource _MUST_ first be painted into a Container with a `duration` and the `temporalScale` is asserted on that Container. For example, an Audio file is painted into a Timeline, and then `temporalScale` is asserted on the Timeline.
2590
2590
@@ -2602,7 +2602,7 @@ To assert a `temporalScale` for a Content Resource, the resource _MUST_ first be
0 commit comments