Skip to content Skip to sidebar Skip to footer
Showing posts with the label 3d

Mayavi: Rotate Around Y Axis

I'm plotting a 3D mesh using mayavi's triangular_mesh method. The data describes a human si… Read more Mayavi: Rotate Around Y Axis

Python 3d Plot For Multiple Dataframes

Assuming that I have three Python pandas DataFrames: df_sale = pd.DataFrame([[20,30,10], [30,20,20]… Read more Python 3d Plot For Multiple Dataframes

Representing 4d Data In Mplot 3d Using Colormaps

Is there a way to change the value that the colormap is tied to in an mplot3d surface plot? As an e… Read more Representing 4d Data In Mplot 3d Using Colormaps

Generating A Cylindrical Surface With Np.outer

I was able to previously generate and plot a spherical surface using np.outer: u = np.linspace(0, … Read more Generating A Cylindrical Surface With Np.outer

Speeding Up A Closest Point On A Hyperbolic Paraboloid Algorithm

I wrote a python script which finds the UV coords of the closest point on surface from a query poin… Read more Speeding Up A Closest Point On A Hyperbolic Paraboloid Algorithm

How May I Project Vectors Onto A Plane Defined By Its Orthogonal Vector In Python?

I have a plane, plane A, defined by its orthogonal vector, say (a, b, c). (i.e. the vector (a, b, c… Read more How May I Project Vectors Onto A Plane Defined By Its Orthogonal Vector In Python?

3d Cartopy Similar To Matplotlib-basemap

I'm new to Python with a question about Cartopy being able to be used in a 3D plot. Below is a… Read more 3d Cartopy Similar To Matplotlib-basemap

Visualising 2 Parameters And Their Results

There's 2 parameters where I want to try different values for: a = [0.0, 0.5, 0.6] # len == 3 … Read more Visualising 2 Parameters And Their Results