Interface: ImplicitFunctionOptions
Defined in: mobjects/graphing/ImplicitFunction.ts:7
Options for creating an ImplicitFunction
Properties
axes?
optionalaxes:Axes
Defined in: mobjects/graphing/ImplicitFunction.ts:23
Reference axes for coordinate transformation. Optional
color?
optionalcolor:string
Defined in: mobjects/graphing/ImplicitFunction.ts:19
Stroke color. Default: '#58c4dd' (Manim blue)
func()
func: (
x,y) =>number
Defined in: mobjects/graphing/ImplicitFunction.ts:9
The implicit function f(x, y) whose zero-level set is plotted
Parameters
x
number
y
number
Returns
number
maxDepth?
optionalmaxDepth:number
Defined in: mobjects/graphing/ImplicitFunction.ts:17
Maximum grid depth for adaptive refinement (grid = 2^maxDepth at finest). Default: 9
minDepth?
optionalminDepth:number
Defined in: mobjects/graphing/ImplicitFunction.ts:15
Minimum grid depth (grid = 2^minDepth cells per axis). Default: 5
strokeWidth?
optionalstrokeWidth:number
Defined in: mobjects/graphing/ImplicitFunction.ts:21
Stroke width in pixels. Default: 2
xRange?
optionalxRange: [number,number]
Defined in: mobjects/graphing/ImplicitFunction.ts:11
X range for the plot as [min, max]. Default: [-5, 5]
yRange?
optionalyRange: [number,number]
Defined in: mobjects/graphing/ImplicitFunction.ts:13
Y range for the plot as [min, max]. Default: [-5, 5]