Skip to content

Commit 89f15b0

Browse files
committed
add some basic diagrams
1 parent 11bbee4 commit 89f15b0

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/content/concepts/transforms.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: Transforms & Transform Frames
33
order: 300
44
---
55

6+
<!-- Figma file for diagrams in this article: https://www.figma.com/board/PTwJKgi9kQOqG7ZgzdhrDL/Transforms-doc-page-graphs?t=fWkOGxxn6mZkkCON-1 -->
7+
68
Rerun comes with built-in support for modeling spatial relationships between entities.
79
This page details how the [different archetypes](https://rerun.io/docs/reference/types/archetypes#transforms) involved interact with each other and explains how geometric transforms are set up in Rerun.
810

@@ -143,6 +145,13 @@ rr.log("robot/arm/gripper",
143145
)
144146
```
145147

148+
<picture>
149+
<img src="https://static.rerun.io/transform_graph_translated/869b741ecce84c6b9af183922d32226a32a500bc/full.png" alt="">
150+
<source media="(max-width: 480px)" srcset="https://static.rerun.io/transform_graph_translated/869b741ecce84c6b9af183922d32226a32a500bc/480w.png">
151+
<source media="(max-width: 768px)" srcset="https://static.rerun.io/transform_graph_translated/869b741ecce84c6b9af183922d32226a32a500bc/768w.png">
152+
<source media="(max-width: 1024px)" srcset="https://static.rerun.io/transform_graph_translated/869b741ecce84c6b9af183922d32226a32a500bc/1024w.png">
153+
</picture>
154+
146155
### Mixing explicit and implicit transform frames
147156

148157
We generally do not recommend mixing explicit and implicit transform frames since it can get confusing,
@@ -159,7 +168,12 @@ rr.log("arm",
159168
rr.log("gripper", rr.Points3D([0, 0, 0]), rr.CoordinateFrame("arm_frame"))
160169
```
161170

162-
TODO: show a graph
171+
<picture>
172+
<img src="https://static.rerun.io/transform_graph_mixed/f01d4a4a5fd39b072dd439e93885e46d9e808825/full.png" alt="">
173+
<source media="(max-width: 480px)" srcset="https://static.rerun.io/transform_graph_mixed/f01d4a4a5fd39b072dd439e93885e46d9e808825/480w.png">
174+
<source media="(max-width: 768px)" srcset="https://static.rerun.io/transform_graph_mixed/f01d4a4a5fd39b072dd439e93885e46d9e808825/768w.png">
175+
<source media="(max-width: 1024px)" srcset="https://static.rerun.io/transform_graph_mixed/f01d4a4a5fd39b072dd439e93885e46d9e808825/1024w.png">
176+
</picture>
163177

164178
## Pinhole projections
165179

0 commit comments

Comments
 (0)