About Store Forum Documentation Contact



Post Reply 
How to draw float?
Author Message
po2devs Offline
Member

Post: #1
How to draw float?
hello I am trying to draw a Str with Flt, Int ?

A Str with Flt or Int in it?

How to do it?
(This post was last modified: 05-20-2011 06:51 AM by po2devs.)
05-20-2011 06:50 AM
Find all posts by this user Quote this message in a reply
Driklyn Offline
Member

Post: #2
RE: How to draw float?
PHP Code:
Flt num 1;
D.text(00num); // Outputs: 1.000 

PHP Code:
Int x 1;
Int y 2;

D.text(00"x + y = " + (y)); // Outputs: x + y = 3 
05-20-2011 08:05 AM
Find all posts by this user Quote this message in a reply
po2devs Offline
Member

Post: #3
RE: How to draw float?
worked
05-20-2011 08:14 AM
Find all posts by this user Quote this message in a reply
Post Reply