https://github.com/dryairship/sketchup
A Java program to plot the graph of simple functions.
https://github.com/dryairship/sketchup
bufferedimage image-creation java java-graphics javascript-engine
Last synced: about 2 months ago
JSON representation
A Java program to plot the graph of simple functions.
- Host: GitHub
- URL: https://github.com/dryairship/sketchup
- Owner: dryairship
- License: mit
- Created: 2018-12-05T19:44:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-14T16:14:01.000Z (over 6 years ago)
- Last Synced: 2025-02-01T21:14:04.231Z (4 months ago)
- Topics: bufferedimage, image-creation, java, java-graphics, javascript-engine
- Language: Java
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### About
A Java program to plot the graph of simple algebraic, trigonometric and exponential functions.### How To Run
- Compile using `javac Sketchup.java`
- Run using `java Sketchup`
- Enter the function in the proper format (See the examples given below). Please wait a few seconds for the image to be rendered.### Sample functions :
- `sin(x)`
- `cos(x)`
- `1/tan(x)`
- `x*x*x*x`
- `sin(x)*cos(x)*x`
- `tan(x)/x`
- `pow(x,sin(x))`