Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for "Trailing path commands" for Plot2D #8

Open
DJDuque opened this issue May 24, 2022 · 0 comments
Open

Add support for "Trailing path commands" for Plot2D #8

DJDuque opened this issue May 24, 2022 · 0 comments
Labels
enhancement New feature or request question Further information is requested

Comments

@DJDuque
Copy link
Owner

DJDuque commented May 24, 2022

The general command for a plot is:

\addplot[keys] coordinates {
    % coordinates
} <trailing path commands here>;

How should we include support for this? My first idea is to add Option<TrailingPath> 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.

@DJDuque DJDuque added enhancement New feature or request help wanted Extra attention is needed question Further information is requested labels May 24, 2022
@DJDuque DJDuque removed the help wanted Extra attention is needed label Jan 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant