# Path Creation

There are two ways to create a path in valora.

### Immediate

You could use draw commands on the canvas which immediately result in the path, but the path can only be drawn and not held for mutation or other work.&#x20;

```rust
canvas.move_to(P2::new(430., 225.));
canvas.line_to(P2::new(83., 225.));
canvas.line_to(P2::new(256., 525.));
canvas.close_path();
canvas.set_stroke_width(2.);
canvas.stroke();
```

![A path created immediately.](/files/-LwFO-rej_QLQd7sNXN6)

### Held

Alternatively, you could use some types provided by valora to define the path in a way you can hold, mutate, and otherwise do work with. For example, this code which repeats the triangle scaling down each time:

```rust
let triangle = Ngon::triangle(world.center(), 200.);
let repeated = std::iter::successors(Some(triangle), |t| {
    Some(t.clone().scale(0.9))
});

for triangle in repeated.take(15) {
    canvas.paint(Stroked {
        width: 2.,
        element: triangle,
    });
}
```

![A path generated, held, and manipulated.](/files/-LwFNl9v5FjinlXpsz1k)

Valora provides [Ngon](https://docs.rs/valora/0.2.0/valora/forms/struct.Ngon.html) for equilateral shapes, [Ellipse](https://docs.rs/valora/0.2.0/valora/forms/struct.Ellipse.html) for ellipses, and [Polygon](https://docs.rs/valora/0.2.0/valora/forms/struct.Polygon.html) for all other shapes.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://paytonturnage.gitbook.io/valora/path-creation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
