renaming library files

This commit is contained in:
benfry
2004-09-30 00:57:37 +00:00
parent 419b204a99
commit d3965c5f93
6 changed files with 59 additions and 31 deletions
+10
View File
@@ -37,6 +37,16 @@ PROCESSING WON'T START! NOTHING HAPPENS WHEN I HIT "RUN"!
- windows.. you might also try using run.bat to start processing. lots
of people seem to have a better time with this method.
- any platform.. errors inside code that is outside of setup() or
loop(), for instance this code:
PFont font = loadFont("blah.vlw");
void setup {
// something fancy
}
may just hang/freeze processing if "blah.vlw" is not in the "data"
folder. in general, a better practice is to use loadFont() (and
loadImage and the rest) inside of a function like setup().
- on 50% of machines, there still seems to be a bug that causes the
application to hang completely when something that uses a library
(or a code folder) is run. symptom will be a non-responsive applet
+11
View File
@@ -69,6 +69,13 @@ major changes: (things that break your code)
http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096304533;start=0
http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096304779;start=0
- the sizing/spacing of text() has changed! a combination of small
bugs inside text() and the "Create Font" tool meant that text was
not sized properly. it's now been tweaked to more closely resemble
the sizing used by the platform. for instance, 48 point type of a
font in illustrator looks like 48 point type of the same font in
processing.
additions:
@@ -78,6 +85,10 @@ additions:
println(hex(c));
- support for text in a box: text(String text, x, y, width, height);
this is like the text box in adobe illustrator or programs like
that, note that the x, y where it starts will be the top of the
line of text, not the baseline of the text as is the case for
the other text() functions.
- operators for int(), string(), char(), and other basic types.
String s = "10.2";