No description
Find a file
2024-11-24 10:50:08 -08:00
.back/WidBack Replace Old Widgets 2024-10-18 12:54:03 +03:00
.docs update readme 2024-03-21 13:57:27 +03:00
.github/workflows Update cmake-single-platform.yml 2024-06-19 12:51:43 +03:00
.wip/Language tmp 2024-03-16 12:51:09 +03:00
3DEditor Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
3DScene 3D scene stable 2024-06-18 17:59:14 +03:00
cmake Windows update 2024-10-22 23:35:24 +03:00
Connection Restore buildbot status 2024-03-22 17:33:29 +03:00
Containers add setBuff method to Buffer2D 2024-11-24 01:45:50 +03:00
DataAnalysis Initial size handling 2024-10-11 14:45:49 +03:00
Externals Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
Graphics Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
LibraryViewer Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
Math Scrolling layout 2024-10-17 23:34:13 +03:00
Modules Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
Objects Refactor Layout Manager 2024-10-17 14:28:20 +03:00
RasterRender dirty 2024-06-21 10:26:57 +03:00
RayTracer Initial size handling 2024-10-11 14:45:49 +03:00
Sketch3D Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
Widgets Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
.clang-format ini 2024-02-03 10:46:29 +03:00
.clang-tidy Math module initial 2023-07-05 20:33:18 +03:00
.cproject LibraryViewer 2023-11-28 23:22:04 +03:00
.gitignore Linux fixes 2024-03-18 09:55:12 +03:00
.gitmodules Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00
.project LibraryViewer 2023-11-28 23:22:04 +03:00
CMakeLists.txt Windows update 2024-10-22 23:35:24 +03:00
CMakeSettings.json Archiver Initial 2023-07-30 08:28:31 +03:00
LICENSE Update LICENSE 2024-11-24 10:50:08 -08:00
README.MD Restore buildbot status 2024-03-22 17:33:29 +03:00
STATUS Update TODO 2024-03-22 16:19:56 +03:00
TODO Widgets Additions and sketch3d new gui 2024-10-22 23:36:30 +03:00

Modules

This repository started as a place for learning C++. Many modules were intentionally developed to gain a better understanding of a topic as opposed to using libraries. As time passes some modules gradually vanish due to my new experience and knowledge, and some grow.

  • Containers - a collection of implementations of well-known containers: Lists, Hash-Map, Trees, Interval Tree.
  • Math - Features some aspects of linear algebra (Matrix operations, vectors). For example, used by the RayTracer and Sketch3D module.
  • RayTracer - simple ray-tracer with object loader and lua configuration.
  • Objects (Python inspired) - encapsulates different types into Python-like objects. The module has its scripting language "Oscript" with support for methods, classes, pure functions, loops, conditions, etc. It uses compilation to bytecode and LALR parser. All objects can be saved and loaded at any time, whether it's a list or a method with bytecode. Some parts of this module have bad implementations and unstable code. Also, the module suffers from a lack of good testing.
  • Sketch3D - application with the ability to draw in 3D space. Features stroke processing and view-dependent shaders. Has lots of TODOs.
  • Data analysis - simple fully connected neural network (FCNN). Contains example application that is recognizing hand written numbers.

For more information on some modules see TODO and STATUS

Building

Check git actions if some libraries are missing.

To build and debug on windows clone svn repository (https://svn.riouxsvn.com/moduleswindowsl) alongside this repo and check WINDOWS_LIBRARIES option in cmake

Gallery

RayTracer Simple Ray-Tracer.

Oscript Oscript.

Sketch3d Sketch3D.