Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.22 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.22 KB

Stable Dev Build Status codecov

ImplicitEquations

In a paper, Tupper presents a method for graphing two-dimensional implicit equations and inequalities. This package gives an implementation of the paper's basic algorithms to allow the Julia user to naturally represent and easily render graphs of implicit functions and equations.

We give one example, others may be viewed in the documentation.

The Devils curve is graphed over the default region as follows:

using Plots, ImplicitEquations

a,b = -1,2
f(x,y) = y^4 - x^4 + a*y^2 + b*x^2

plot(f ⩵ 0)  # \Equal[tab] or Eq(f, 0)

DevilsCurve