Open HubChangWang opened 4 years ago
Hi there, looks like this is a normalisation issue. If you change
mpl_toolkits.clifford.plot(ax1, [circle2.dual()], color='tab:blue') mpl_toolkits.clifford.plot(ax1, [plane], color='tab:red')
to
mpl_toolkits.clifford.plot(ax1, [circle2.dual().normal()], color='tab:blue') mpl_toolkits.clifford.plot(ax1, [plane.normal()], color='tab:red')
you will get the correct visualisation.
@eric-wieser does the mpl_toolkit do normalisation before extraction of objects parameters etc? If not we should probably add it
I think the issue lies in the (lack of) epsilon handling in clifford.tools.classify
, not this package
Hi there,@hugohadfield @eric-wieser, thank you for your advice, problem solved by adding the .normal() method.