this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: simplify colored edges functions in archi diagram

Signed-off-by: Gwenn Le Bihan <gwenn.lebihan7@gmail.com>

+5 -9
+5 -9
rapport/gz-unitree.typ
··· 644 644 label: text(fill: color, label), 645 645 ..args, 646 646 ) 647 - let sim-edge = (label, ..args) => colored-edge(blue, label, ..args) 648 - let publisher-edge = (label, ..args) => colored-edge(red, label, ..args) 649 - let imu-edge = (label, ..args) => colored-edge(olive.darken(30%), label, ..args) 650 - let clock-edge = (label, ..args) => colored-edge(orange, label, ..args) 651 - let policy-edge = (label, ..args) => colored-edge( 652 - fuchsia, 653 - label, 654 - ..args, 655 - ) 647 + let sim-edge = (..args) => colored-edge(blue, ..args) 648 + let publisher-edge = (..args) => colored-edge(red, ..args) 649 + let imu-edge = (..args) => colored-edge(olive.darken(30%), ..args) 650 + let clock-edge = (..args) => colored-edge(orange, ..args) 651 + let policy-edge = (..args) => colored-edge(fuchsia, ..args) 656 652 657 653 // Simulation loop 658 654 sim-edge("read", <preupdate>, "d,d,r,r", <cmdbuf>, "<-@")