Is there a way to remove the line in this image and only keep the contour? Click here to view the figure.
const intersection = (a, b, c, heightC) => {
return (u, v) => {
const height = heightC || c;
const size = 5;
u = u * height;
v = 2 * v * Math.PI;
const x = a * size * Math.sqrt(u) * Math.cos(v);
const y = c;
const z = b * size * Math.sqrt(u) * Math.sin(v);
return new Three.Vector3(x, y, z);
}
}
export const projectionIntersection = (a, b, heightC) => {
const geom = new Three.ParametricGeometry(intersection(a, b, 1, heightC), 1, 25);
const math = new Three.MeshPhongMaterial({ color: 0x00FF00, wireframe: true });
const mesh = new Three.Mesh(geom, math);
return mesh;
}
I am looking for assistance. Can anyone help me?