ZoomCalc - Online instant notepad calculator program

Discussion about everything. New games, 3d math, development tips...
Post Reply
Rambus
Posts: 96
Joined: Thu Nov 24, 2005 4:56 pm
Location: Canada
Contact:

ZoomCalc - Online instant notepad calculator program

Post by Rambus »

Hello Irrlicht Users,

I thought I would share a neat online calculator I wrote to help people working out numbers / doing quick math. It's a cross between notepad and a spread sheet. It's ideal for working out quick and dirty math, because as you type it computes the result. You can reference rows (R1) just like in a spread sheet, or you can store values in variables, e.g. X=123.

I wrote it for myself, for when I'm programming and I need to derive some expression. But I packed in the ability to save and share calculators to try to make it more useful for the entire community.

You can check out my program here: http://www.ZoomCalc.com

Here is a simple example for computing Win/Loss ratio:
http://zoomcalc.com/?p=82

Image

Here I calculate the number of attacks required by a Zergling to kill a Zealot in the game Starcraft 2. This should show you how you could compute more complex things.

Image

Heres the link:

http://zoomcalc.com/?p=88

This calculator is read only, simply click Create Copy to edit it.

Currently the calculator supports:
sin(X), cos(X), tan(X), asin(X), acos(X)
atan(X), atean2(X), sqrt(X), log(X)
abs(X), ceil(X), floor(X), round(X)
exp(X), random(X), fac(X)
min(X,Y), max(X,Y), pow(X,Y)
+, -, *, /, %, ^, ||

Your some of the first people I have shared this with, so please rip it apart and provide constructive feedback
CuteAlien
Admin
Posts: 9652
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: ZoomCalc - Online instant notepad calculator program

Post by CuteAlien »

Wow, this is really nice. I mostly use python console for that stuff, but being able to go easy back and edit rows is rather cool. No critic - worked perfect in a few tiny tests I just did - loving it :-)
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Rambus
Posts: 96
Joined: Thu Nov 24, 2005 4:56 pm
Location: Canada
Contact:

Re: ZoomCalc - Online instant notepad calculator program

Post by Rambus »

Thanks for the kind words :)
kazymjir
Posts: 727
Joined: Sat Feb 20, 2010 4:05 pm
Location: Munich, Bayern

Re: ZoomCalc - Online instant notepad calculator program

Post by kazymjir »

The idea is really nice, I like it.
Post Reply