double y2 = ctx.getValue(arg4);
double x3 = ctx.getValue(arg5);
double y3 = ctx.getValue(arg6);
- path.curveTo(x1, y1, x2, y2, x3, y3);
+ path.curveTo((float)x1, (float)y1, (float)x2, (float)y2, (float)x3, (float)y3);
}
}
static Map<String, Formula> builtInFormulas = new HashMap<String, Formula>();
static {
- // 3 x 360¡ / 4 = 270¡
+ // 3 x 360 / 4 = 270
builtInFormulas.put("3cd4", new Formula(){
@Override
double evaluate(Context ctx){
});
- // 3 x 360¡ / 8 = 135¡
+ // 3 x 360 / 8 = 135
builtInFormulas.put("3cd8", new Formula(){
@Override
double evaluate(Context ctx){
});
- // 5 x 360¡ / 8 = 225¡
+ // 5 x 360 / 8 = 225
builtInFormulas.put("5cd8", new Formula(){
@Override
double evaluate(Context ctx){
});
- // 7 x 360¡ / 8 = 315¡
+ // 7 x 360 / 8 = 315
builtInFormulas.put("7cd8", new Formula(){
@Override
double evaluate(Context ctx){
});
- // 360¡ / 2 = 180¡
+ // 360 / 2 = 180
builtInFormulas.put("cd2", new Formula(){
@Override
double evaluate(Context ctx){
});
- // 360¡ / 4 = 90¡
+ // 360 / 4 = 90
builtInFormulas.put("cd4", new Formula(){
@Override
double evaluate(Context ctx){
});
- // 360¡ / 8 = 45¡
+ // 360 / 8 = 45
builtInFormulas.put("cd8", new Formula(){
@Override
double evaluate(Context ctx){
double y1 = ctx.getValue(arg2);
double x2 = ctx.getValue(arg3);
double y2 = ctx.getValue(arg4);
- path.quadTo(x1, y1, x2, y2);
+ path.quadTo((float)x1, (float)y1, (float)x2, (float)y2);
}
}