author | Francesco Abbate <francesco.bbt@gmail.com> | 2012年07月08日 17:18:02 +0200 |
---|---|---|
committer | Francesco Abbate <francesco.bbt@gmail.com> | 2012年07月08日 17:18:02 +0200 |
commit | 9517365ab646fc9e324ec07fbb18c7d01047cdb1 (patch) | |
tree | 3dd042a18bcad646343ca7e8b5bfd8cd99e44e0a /agg-plot/lua-text.cpp | |
parent | 3115c6cf96e60f59b3c5d8cdc9d6edc3be2a410d (diff) | |
download | gsl-shell-9517365ab646fc9e324ec07fbb18c7d01047cdb1.tar.gz |
-rw-r--r-- | agg-plot/lua-text.cpp | 2 |
diff --git a/agg-plot/lua-text.cpp b/agg-plot/lua-text.cpp index 43432f70..681bf37b 100644 --- a/agg-plot/lua-text.cpp +++ b/agg-plot/lua-text.cpp @@ -66,7 +66,7 @@ agg_text_new (lua_State *L) double x = luaL_checknumber (L, 1); double y = luaL_checknumber (L, 2); const char *text = luaL_checkstring (L, 3); - double size = luaL_optnumber (L, 4, 10.0); + double size = luaL_optnumber (L, 4, 14.0); draw::text* t = new(L, GS_DRAW_TEXT) draw::text(text, size); t->set_point(x, y); return 1; |