pax-example 0.10.7

Example and development app for the Pax monorepo and compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

<Stacker cells=5 width=100% height=100% gutter=5px>
    <Stacker cells=10 height=100% width=100% direction=StackerDirection::Vertical gutter=5px >
        for i in 0..10 {
            <Group>
                <Text text="hello" />
                <Rectangle width=100% height=100% fill={Fill::Solid(Color::rgb(0.5, 0.5, 1.0 / (10.0-i)))} />
            </Group>
        }
    </Stacker>
    for i in 0..4 {
        <Group>
            <Text text="hello" />
            <Rectangle width=100% height=100% fill={Fill::Solid(Color::rgb(1.0 / (5.0-i), 0.0, 0.5))} />
        </Group>
    }
</Stacker>