ComplexPlane constructor
ComplexPlane({
- double xMin = -FRAME_X_RADIUS,
- double xMax = FRAME_X_RADIUS,
- double yMin = -FRAME_Y_RADIUS,
- double yMax = FRAME_Y_RADIUS,
- Vector3 centerPoint = ORIGIN,
- AxisConfig axisConfig = NumberPlane.DefaultAxisConfig,
- AxisConfig xAxisConfig = const AxisConfig(),
- AxisConfig yAxisConfig = const AxisConfig(),
- VMobjectStyle backgroundLineStyle = NumberPlane.DefaultBackgroundLineStyle,
- VMobjectStyle? fadedLineStyle,
- double xLineFrequency = 1,
- double yLineFrequency = 1,
- double fadedLineRatio = 1,
- bool makeSmoothAfterApplyingFunctions = true,
Implementation
ComplexPlane({
double xMin = -FRAME_X_RADIUS,
double xMax = FRAME_X_RADIUS,
double yMin = -FRAME_Y_RADIUS,
double yMax = FRAME_Y_RADIUS,
Vector3 centerPoint = ORIGIN,
AxisConfig axisConfig = NumberPlane.DefaultAxisConfig,
AxisConfig xAxisConfig = const AxisConfig(),
AxisConfig yAxisConfig = const AxisConfig(),
VMobjectStyle backgroundLineStyle = NumberPlane.DefaultBackgroundLineStyle,
VMobjectStyle? fadedLineStyle,
double xLineFrequency = 1,
double yLineFrequency = 1,
double fadedLineRatio = 1,
// TODO currently make smooth doesn't work
bool makeSmoothAfterApplyingFunctions = true,
}) : super(
xMin: xMin,
xMax: xMax,
yMin: yMin,
yMax: yMax,
centerPoint: centerPoint,
axisConfig: axisConfig,
xAxisConfig: xAxisConfig,
yAxisConfig: yAxisConfig,
backgroundLineStyle: backgroundLineStyle,
fadedLineStyle: fadedLineStyle,
xLineFrequency: xLineFrequency,
yLineFrequency: yLineFrequency,
fadedLineRatio: fadedLineRatio,
makeSmoothAfterApplyingFunctions: makeSmoothAfterApplyingFunctions,
);