diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-19 15:55:01 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-19 15:55:01 (GMT) |
commit | 1d2c59184cee7d31a5f6d388fdb5afab57f174a9 (patch) | |
tree | 7dd17e3365f04f43bc71c4bdb330b46b9cfd646a /src | |
parent | 80f50f0883157e00ae7fff1517f65b0aa9c1fd80 (diff) |
Changed the default value of to 2 to avoid breaking existing scripts which assume a certain default tesselation behavior
Diffstat (limited to 'src')
-rw-r--r-- | src/context.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context.cc b/src/context.cc index bd97f8f..6d0cb3a 100644 --- a/src/context.cc +++ b/src/context.cc @@ -188,7 +188,7 @@ void register_builtin(Context &ctx) ctx.functions_p = &Builtins::instance()->functions(); ctx.modules_p = &Builtins::instance()->modules(); ctx.set_variable("$fn", Value(0.0)); - ctx.set_variable("$fs", Value(1.0)); + ctx.set_variable("$fs", Value(2.0)); ctx.set_variable("$fa", Value(12.0)); ctx.set_variable("$t", Value(0.0)); |