https://github.com/krishnamodepalli/2d-graph-system
Real-time Points and Lines manipulation.
https://github.com/krishnamodepalli/2d-graph-system
cpp geometry
Last synced: 3 months ago
JSON representation
Real-time Points and Lines manipulation.
- Host: GitHub
- URL: https://github.com/krishnamodepalli/2d-graph-system
- Owner: krishnamodepalli
- License: mit
- Created: 2023-05-17T04:38:21.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-22T11:04:23.000Z (almost 2 years ago)
- Last Synced: 2025-01-25T07:07:27.445Z (5 months ago)
- Topics: cpp, geometry
- Language: C++
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 2d-Graph-System
This cpp project is a demonstration of rectangular graph system where we work
with Points, Lines, etc.. In this project all of them (I think) were
implemented in code language where we can use Points, Lines and we can
manipulate them and do calculations on them, treat each one of them as an
object like any other object in cpp.**This project is a pure demonstration of 2d-Graph-System in cpp language**.
All the documentation for the project is available in the `Usage.md` file with
all the details and how-to-use descriptions.For the first time in this repository, a `Makefile` is included. This usually
creates directories for the project and compile code with both `debug` and
`release` modes (with Optimization enabled on `release` mode) and creates a
`bin` directory where all the binaries of the project will be placed.
By the way, this `Makefile` is generated by AI(ChatGPT).## Compiling and executing
```terminal
# for `debug` mode
$ make debug
$ ./bin/debug/main# for `release` mode
$ make release
$ ./bin/release/main
```The above example should work well, if you find any difficulties about using
them, feel free to ask in comments or issues.