24 lines
669 B
Dart
24 lines
669 B
Dart
import 'dart:core';
|
|
|
|
import 'animate_kanji.dart';
|
|
|
|
class KanimajiOptions {
|
|
// String inputFile;
|
|
// String? outputFile;
|
|
TimingFunction timingFunction = TimingFunction.easeInOut;
|
|
double strokeBorderWidth = 4.5;
|
|
double strokeUnfilledWidth = 3;
|
|
double strokeFilledWidth = 3.1;
|
|
bool showBrush = true;
|
|
bool showBrushFrontBorder = true;
|
|
double brushWidth = 5.5;
|
|
double brushBorderWidth = 7;
|
|
double waitAfter = 1.5;
|
|
int gifSize = 500;
|
|
String strokeBorderColor = '#666';
|
|
String strokeUnfilledColor = '#EEE';
|
|
String strokeFillingColor = '#F00';
|
|
String strokeFilledColor = '#000';
|
|
String brushColor = '#F00';
|
|
String brushBorderColor = '#666';
|
|
} |