I 'm looking for a way to draw a vertical plane for example X=10, Z=100 etc. with a TSurfaceSeries, but this seems to be impossible because TSurfaceSeries doesn't draw anything if I add multiple points with same x value and different y and z values:
The code below should draw a plane with the equation: X=50 in the y/z range 0..255
Code: Select all
AddXYZ(50,255, 0);
AddXYZ(50, 0, 255);
AddXYZ(50, 0, 0);
AddXYZ(50, 255, 255);
Is there a way to draw such a plane with minimal number of points to add using any other series-type ?
Regards,
Klaus