Skip to content

This repo conatins a class for defining and plotting of a coordinate system using plotly

License

Notifications You must be signed in to change notification settings

AIMPED/plotly_coordinateSystem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

plotly_coordinateSystem

coordinate system class. Includes plotting using plotly

example usage:

    points_1 = [[0, 0, 0], [1, 0, 0], [1, 1, 0]]
    points_2 = [[2, 2, 0], [3, 3, 0], [3, 1, 0]]

    csys_1 = CoordinateSystem(points_coordinates=points_1)
    csys_2 = CoordinateSystem(points_coordinates=points_2)

    fig = go.Figure(csys_1.traces + csys_2.traces )
    fig.show()

Output:

a picture of two coordinate systems

About

This repo conatins a class for defining and plotting of a coordinate system using plotly

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages