Ask Your Question

jaykru's profile - activity

2024-03-05 21:25:07 +0200 received badge  Popular Question (source)
2020-02-22 21:38:33 +0200 asked a question How to get the points from a contour plot object?

I've defined a plot object for the hyperboloid in R^(-1,1).

hyperboloid = region_plot(-x^2+y^2 == 1, (x,-3,3),(y,-3,3))

I want to reflect this hyperboloid across a plane, and to do that I can't think of a better way than to somehow extract the points from the ContourPlot object behind the hyperboloid and then apply a reflection transformation to each point, then plot the points I get back. How do I get the points backing the plot? If that's not possible, or if there is a better way, how can I achieve my desired reflection?