Given a list looking like this:
triangels = [
((1,1,1),(2,2,2),(1,3,4)),
((2,3,4),(9,9,9),(3,4,5)),
]
What is the fastest way to plot both triangles in 3D using pyplot? I do not find any way doing this, there is a 2D implementation.
Thank you!
This is not a duplicate since I asked how to convert the given list into triangles, I did not ask for a solution where the input is already manipulated.