No description
Find a file
2024-11-24 22:41:14 +03:00
.docs update readme 2024-11-24 22:41:14 +03:00
.github/workflows Update cmake-single-platform.yml 2024-11-24 22:41:14 +03:00
.wip/Language tmp 2024-11-24 22:41:13 +03:00
3DEditor 3D scene stable 2024-11-24 22:41:14 +03:00
3DScene 3D scene stable 2024-11-24 22:41:14 +03:00
Connection Restore buildbot status 2024-11-24 22:41:14 +03:00
Containers update widgets 2024-11-24 22:41:14 +03:00
DataAnalysis see ya later allocator 2024-11-24 22:41:14 +03:00
Externals Windows update 2024-11-24 22:41:14 +03:00
Graphics Resize frame buffer method added 2024-11-24 22:41:14 +03:00
LibraryViewer Update widgets 2024-11-24 22:41:14 +03:00
Math Update widgets module. Raster example initial. 2024-11-24 22:41:14 +03:00
Modules update numeric key interface 2024-11-24 22:41:14 +03:00
Objects Windows update 2024-11-24 22:41:14 +03:00
RasterRender clean up 2024-11-24 22:41:14 +03:00
RayTracer 3D scene stable 2024-11-24 22:41:14 +03:00
Sketch3D Update widgets 2024-11-24 22:41:14 +03:00
Widgets Update widgets 2024-11-24 22:41:14 +03:00
.clang-format ini 2024-11-24 22:41:13 +03:00
.clang-tidy Math module initial 2023-07-05 20:33:18 +03:00
.cproject LibraryViewer 2024-11-24 22:41:12 +03:00
.gitignore Linux fixes 2024-11-24 22:41:13 +03:00
.gitmodules Use UnitTest-Cpp library for testing 2024-11-24 22:41:13 +03:00
.project LibraryViewer 2024-11-24 22:41:12 +03:00
CMakeLists.txt 3D Scene initial 2024-11-24 22:41:14 +03:00
CMakeOptions.txt Widget Example added 2024-11-24 22:41:14 +03:00
CMakeSettings.json Archiver Initial 2024-11-24 22:38:03 +03:00
LICENSE Create LICENSE 2024-11-24 22:41:14 +03:00
README.MD Restore buildbot status 2024-11-24 22:41:14 +03:00
STATUS Update TODO 2024-11-24 22:41:14 +03:00
TODO Update TODO regargin 3d framework 2024-11-24 22:41:14 +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.