├── .gitignore ├── Data.zip ├── Makefile.win ├── README.md ├── Readme.txt ├── asemodel.cpp ├── asemodel.h ├── bmp.cpp ├── bmp.h ├── dibsection.cpp ├── dibsection.h ├── fileopen.cpp ├── fileopen.h ├── g-matrix3d neo.png ├── g-matrix3d-neo.png ├── gm3d.ico ├── graphics.cpp ├── graphics.h ├── light.h ├── material.h ├── matmanager.h ├── matrix.h ├── matrix2.cpp ├── matrix2.h ├── matrix3.cpp ├── matrix3.h ├── matrix4.cpp ├── matrix4.h ├── mesh.cpp ├── mesh.h ├── model.cpp ├── model.h ├── raster.cpp ├── raster.h ├── renbuffer.cpp ├── renbuffer.h ├── resource.aps ├── resource.h ├── resource.rc ├── soft3d.dev ├── soft3d.dsp ├── soft3d.dsw ├── soft3d.exe ├── soft3d.ico ├── soft3d.opt ├── soft3d.plg ├── soft3d.sln ├── soft3d.vcxproj ├── soft3d.vcxproj.filters ├── soft3d.vcxproj.user ├── soft3d_private.h ├── soft3d_private.rc ├── soft3d_private.res ├── soft3dapp.cpp ├── soft3dapp.h ├── soft3dres.h ├── stdafx.cpp ├── stdafx.h ├── texmanager.cpp ├── texmanager.h ├── texture.cpp ├── texture.h ├── transform.cpp ├── transform.h ├── util.h ├── vector.h ├── vector2.cpp ├── vector2.h ├── vector3.cpp ├── vector3.h ├── vector4.cpp ├── vector4.h ├── vertex.h ├── winmain.cpp └── wizard.bmp /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .vs 3 | Debug 4 | Release 5 | -------------------------------------------------------------------------------- /Data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/Data.zip -------------------------------------------------------------------------------- /Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/Makefile.win -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/README.md -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/Readme.txt -------------------------------------------------------------------------------- /asemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/asemodel.cpp -------------------------------------------------------------------------------- /asemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/asemodel.h -------------------------------------------------------------------------------- /bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/bmp.cpp -------------------------------------------------------------------------------- /bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/bmp.h -------------------------------------------------------------------------------- /dibsection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/dibsection.cpp -------------------------------------------------------------------------------- /dibsection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/dibsection.h -------------------------------------------------------------------------------- /fileopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/fileopen.cpp -------------------------------------------------------------------------------- /fileopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/fileopen.h -------------------------------------------------------------------------------- /g-matrix3d neo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/g-matrix3d neo.png -------------------------------------------------------------------------------- /g-matrix3d-neo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/g-matrix3d-neo.png -------------------------------------------------------------------------------- /gm3d.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/gm3d.ico -------------------------------------------------------------------------------- /graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/graphics.cpp -------------------------------------------------------------------------------- /graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/graphics.h -------------------------------------------------------------------------------- /light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/light.h -------------------------------------------------------------------------------- /material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/material.h -------------------------------------------------------------------------------- /matmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matmanager.h -------------------------------------------------------------------------------- /matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matrix.h -------------------------------------------------------------------------------- /matrix2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matrix2.cpp -------------------------------------------------------------------------------- /matrix2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matrix2.h -------------------------------------------------------------------------------- /matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matrix3.cpp -------------------------------------------------------------------------------- /matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matrix3.h -------------------------------------------------------------------------------- /matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matrix4.cpp -------------------------------------------------------------------------------- /matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/matrix4.h -------------------------------------------------------------------------------- /mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/mesh.cpp -------------------------------------------------------------------------------- /mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/mesh.h -------------------------------------------------------------------------------- /model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/model.cpp -------------------------------------------------------------------------------- /model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/model.h -------------------------------------------------------------------------------- /raster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/raster.cpp -------------------------------------------------------------------------------- /raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/raster.h -------------------------------------------------------------------------------- /renbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/renbuffer.cpp -------------------------------------------------------------------------------- /renbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/renbuffer.h -------------------------------------------------------------------------------- /resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/resource.aps -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/resource.h -------------------------------------------------------------------------------- /resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/resource.rc -------------------------------------------------------------------------------- /soft3d.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.dev -------------------------------------------------------------------------------- /soft3d.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.dsp -------------------------------------------------------------------------------- /soft3d.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.dsw -------------------------------------------------------------------------------- /soft3d.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.exe -------------------------------------------------------------------------------- /soft3d.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.ico -------------------------------------------------------------------------------- /soft3d.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.opt -------------------------------------------------------------------------------- /soft3d.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.plg -------------------------------------------------------------------------------- /soft3d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.sln -------------------------------------------------------------------------------- /soft3d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.vcxproj -------------------------------------------------------------------------------- /soft3d.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.vcxproj.filters -------------------------------------------------------------------------------- /soft3d.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d.vcxproj.user -------------------------------------------------------------------------------- /soft3d_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d_private.h -------------------------------------------------------------------------------- /soft3d_private.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d_private.rc -------------------------------------------------------------------------------- /soft3d_private.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3d_private.res -------------------------------------------------------------------------------- /soft3dapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3dapp.cpp -------------------------------------------------------------------------------- /soft3dapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3dapp.h -------------------------------------------------------------------------------- /soft3dres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/soft3dres.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/stdafx.h -------------------------------------------------------------------------------- /texmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/texmanager.cpp -------------------------------------------------------------------------------- /texmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/texmanager.h -------------------------------------------------------------------------------- /texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/texture.cpp -------------------------------------------------------------------------------- /texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/texture.h -------------------------------------------------------------------------------- /transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/transform.cpp -------------------------------------------------------------------------------- /transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/transform.h -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/util.h -------------------------------------------------------------------------------- /vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vector.h -------------------------------------------------------------------------------- /vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vector2.cpp -------------------------------------------------------------------------------- /vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vector2.h -------------------------------------------------------------------------------- /vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vector3.cpp -------------------------------------------------------------------------------- /vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vector3.h -------------------------------------------------------------------------------- /vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vector4.cpp -------------------------------------------------------------------------------- /vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vector4.h -------------------------------------------------------------------------------- /vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/vertex.h -------------------------------------------------------------------------------- /winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/winmain.cpp -------------------------------------------------------------------------------- /wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idgmatrix/g-matrix3d-neo/HEAD/wizard.bmp --------------------------------------------------------------------------------