Add support for "Trailing path commands" for Plot2D
Open
enhancement
question
- Dominant language
- Rust
- Stars
- 124
- Forks
- 7
- PR merge metrics
- No merged PRs in 30d
Description
The general command for a plot is:
```
\addplot[keys] coordinates {
% coordinates
} ;
```
How should we include support for this? My first idea is to add `Option` to the `Plot2D`, where
```
pub enum TrailingPath {
Custom(String), // Write your own custom command
ClosedCycle, // corresponds to "\closedcycle"
Cycle, // corresponds to "--cycle"
}
```
But I don't know enough about this.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.