Yesterday, I attempted to plot a 3D Math function [ F(x,y) ] by calculating various points (x, y, z) in space and representing them as white points.
Here is an example: https://i.sstatic.net/4kM4x.png
Inital Issue: When I adjusted the scenario using Orbital Control, the performance was unsatisfactory. After exploring options, I realized that NURBS surfaces might provide a solution. However, I encountered difficulty defining a larger number of Control Points. My intention was to create a NURBS surface with 50 x 50 control points, similar to the image shown, but I could only achieve a 3 x 4 point NURB surface. Below is the code snippet:
[...]
Outcome:
https://i.sstatic.net/3BPft.png
The Query: Is there a method to instruct a NURBS Surface to use a 50x50 array/matrix of vectors for plotting?
Additional Concern: How can points be handled where the function is undefined?
Query: Is it possible to create a plane based on a Math function?