├── .vs └── VanyaOpenGL │ └── v14 │ └── .suo ├── Debug ├── Assimp32.dll ├── VanyaOpenGL.exe ├── VanyaOpenGL.ilk └── VanyaOpenGL.pdb ├── Stuff ├── Models │ ├── clothModel.blend │ ├── clothModel.mtl │ ├── clothModel.obj │ ├── cube.obj │ ├── largercube.mtl │ ├── largercube.obj │ ├── largestcube.mtl │ ├── largestcube.obj │ ├── quadModel.mtl │ ├── quadModel.obj │ └── sphere │ │ ├── largesphere.mtl │ │ ├── largesphere.obj │ │ ├── sphere.blend │ │ ├── sphere.mtl │ │ └── sphere.obj ├── Shaders │ ├── Lighting │ │ ├── phong.frag │ │ └── phong.vert │ ├── givecolour.frag │ ├── givecolour.vert │ ├── plaincolour │ │ ├── blue.frag │ │ ├── blue.vert │ │ ├── boundbox.frag │ │ ├── boundbox.vert │ │ ├── white.frag │ │ └── white.vert │ ├── reflect │ │ ├── reflect.frag │ │ └── reflect.vert │ └── skybox │ │ ├── skybox.frag │ │ ├── skybox.geom │ │ └── skybox.vert └── skybox │ ├── clouds │ ├── Thumbs.db │ ├── stormydays_bk.png │ ├── stormydays_dn.png │ ├── stormydays_ft.png │ ├── stormydays_lf.png │ ├── stormydays_rt.png │ └── stormydays_up.png │ ├── humuslake │ ├── Thumbs.db │ ├── negx.jpg │ ├── negy.jpg │ ├── negz.jpg │ ├── posx.jpg │ ├── posy.jpg │ ├── posz.jpg │ └── readme.txt │ └── sky │ ├── Thumbs.db │ ├── bk.jpg │ ├── dn.jpg │ ├── ft.jpg │ ├── lf.jpg │ ├── rt.jpg │ └── up.jpg ├── VanyaOpenGL.VC.db ├── VanyaOpenGL.sln ├── VanyaOpenGL ├── BookKeeping.h ├── BoundingObject.h ├── BoundingVolumeHierarchy.h ├── Camera.h ├── Cloth.h ├── ClothSystem.h ├── CollisionResponse.h ├── Debug │ ├── Main.obj │ ├── VanyaOpenGL.Build.CppClean.log │ ├── VanyaOpenGL.log │ ├── VanyaOpenGL.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── VanyaOpenGL.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── vc140.idb │ └── vc140.pdb ├── DistanceChecks.h ├── Main.cpp ├── Mesh.h ├── Model.h ├── Particle.h ├── ParticleConstraint.h ├── ParticleSpring.h ├── ParticleSystem.h ├── Release │ ├── VanyaOpenGL.log │ ├── VanyaOpenGL.tlog │ │ ├── CL.command.1.tlog │ │ ├── VanyaOpenGL.lastbuildstate │ │ └── unsuccessfulbuild │ └── vc140.pdb ├── RigidBody.h ├── Shader.h ├── Shaders │ ├── reflect │ │ ├── reflect.vs │ │ └── refract.frag │ └── skybox │ │ ├── skybox.frag │ │ ├── skybox.geo │ │ └── skybox.vs ├── SweepAndPrune.h ├── Triangle.h ├── VanyaOpenGL.vcxproj ├── VanyaOpenGL.vcxproj.filters ├── VanyaOpenGL.vcxproj.user ├── obj_parser.cpp ├── obj_parser.h └── scene_object.cpp └── clothModel.blend /.vs/VanyaOpenGL/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/.vs/VanyaOpenGL/v14/.suo -------------------------------------------------------------------------------- /Debug/Assimp32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Debug/Assimp32.dll -------------------------------------------------------------------------------- /Debug/VanyaOpenGL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Debug/VanyaOpenGL.exe -------------------------------------------------------------------------------- /Debug/VanyaOpenGL.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Debug/VanyaOpenGL.ilk -------------------------------------------------------------------------------- /Debug/VanyaOpenGL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Debug/VanyaOpenGL.pdb -------------------------------------------------------------------------------- /Stuff/Models/clothModel.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/clothModel.blend -------------------------------------------------------------------------------- /Stuff/Models/clothModel.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/clothModel.mtl -------------------------------------------------------------------------------- /Stuff/Models/clothModel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/clothModel.obj -------------------------------------------------------------------------------- /Stuff/Models/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/cube.obj -------------------------------------------------------------------------------- /Stuff/Models/largercube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/largercube.mtl -------------------------------------------------------------------------------- /Stuff/Models/largercube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/largercube.obj -------------------------------------------------------------------------------- /Stuff/Models/largestcube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/largestcube.mtl -------------------------------------------------------------------------------- /Stuff/Models/largestcube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/largestcube.obj -------------------------------------------------------------------------------- /Stuff/Models/quadModel.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/quadModel.mtl -------------------------------------------------------------------------------- /Stuff/Models/quadModel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/quadModel.obj -------------------------------------------------------------------------------- /Stuff/Models/sphere/largesphere.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/sphere/largesphere.mtl -------------------------------------------------------------------------------- /Stuff/Models/sphere/largesphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/sphere/largesphere.obj -------------------------------------------------------------------------------- /Stuff/Models/sphere/sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/sphere/sphere.blend -------------------------------------------------------------------------------- /Stuff/Models/sphere/sphere.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/sphere/sphere.mtl -------------------------------------------------------------------------------- /Stuff/Models/sphere/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Models/sphere/sphere.obj -------------------------------------------------------------------------------- /Stuff/Shaders/Lighting/phong.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/Lighting/phong.frag -------------------------------------------------------------------------------- /Stuff/Shaders/Lighting/phong.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/Lighting/phong.vert -------------------------------------------------------------------------------- /Stuff/Shaders/givecolour.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/givecolour.frag -------------------------------------------------------------------------------- /Stuff/Shaders/givecolour.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/givecolour.vert -------------------------------------------------------------------------------- /Stuff/Shaders/plaincolour/blue.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/plaincolour/blue.frag -------------------------------------------------------------------------------- /Stuff/Shaders/plaincolour/blue.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/plaincolour/blue.vert -------------------------------------------------------------------------------- /Stuff/Shaders/plaincolour/boundbox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/plaincolour/boundbox.frag -------------------------------------------------------------------------------- /Stuff/Shaders/plaincolour/boundbox.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/plaincolour/boundbox.vert -------------------------------------------------------------------------------- /Stuff/Shaders/plaincolour/white.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/plaincolour/white.frag -------------------------------------------------------------------------------- /Stuff/Shaders/plaincolour/white.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/plaincolour/white.vert -------------------------------------------------------------------------------- /Stuff/Shaders/reflect/reflect.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/reflect/reflect.frag -------------------------------------------------------------------------------- /Stuff/Shaders/reflect/reflect.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/reflect/reflect.vert -------------------------------------------------------------------------------- /Stuff/Shaders/skybox/skybox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/skybox/skybox.frag -------------------------------------------------------------------------------- /Stuff/Shaders/skybox/skybox.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/skybox/skybox.geom -------------------------------------------------------------------------------- /Stuff/Shaders/skybox/skybox.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/Shaders/skybox/skybox.vert -------------------------------------------------------------------------------- /Stuff/skybox/clouds/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/clouds/Thumbs.db -------------------------------------------------------------------------------- /Stuff/skybox/clouds/stormydays_bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/clouds/stormydays_bk.png -------------------------------------------------------------------------------- /Stuff/skybox/clouds/stormydays_dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/clouds/stormydays_dn.png -------------------------------------------------------------------------------- /Stuff/skybox/clouds/stormydays_ft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/clouds/stormydays_ft.png -------------------------------------------------------------------------------- /Stuff/skybox/clouds/stormydays_lf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/clouds/stormydays_lf.png -------------------------------------------------------------------------------- /Stuff/skybox/clouds/stormydays_rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/clouds/stormydays_rt.png -------------------------------------------------------------------------------- /Stuff/skybox/clouds/stormydays_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/clouds/stormydays_up.png -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/Thumbs.db -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/negx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/negx.jpg -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/negy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/negy.jpg -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/negz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/negz.jpg -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/posx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/posx.jpg -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/posy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/posy.jpg -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/posz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/posz.jpg -------------------------------------------------------------------------------- /Stuff/skybox/humuslake/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/humuslake/readme.txt -------------------------------------------------------------------------------- /Stuff/skybox/sky/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/sky/Thumbs.db -------------------------------------------------------------------------------- /Stuff/skybox/sky/bk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/sky/bk.jpg -------------------------------------------------------------------------------- /Stuff/skybox/sky/dn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/sky/dn.jpg -------------------------------------------------------------------------------- /Stuff/skybox/sky/ft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/sky/ft.jpg -------------------------------------------------------------------------------- /Stuff/skybox/sky/lf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/sky/lf.jpg -------------------------------------------------------------------------------- /Stuff/skybox/sky/rt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/sky/rt.jpg -------------------------------------------------------------------------------- /Stuff/skybox/sky/up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/Stuff/skybox/sky/up.jpg -------------------------------------------------------------------------------- /VanyaOpenGL.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL.VC.db -------------------------------------------------------------------------------- /VanyaOpenGL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL.sln -------------------------------------------------------------------------------- /VanyaOpenGL/BookKeeping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/BookKeeping.h -------------------------------------------------------------------------------- /VanyaOpenGL/BoundingObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/BoundingObject.h -------------------------------------------------------------------------------- /VanyaOpenGL/BoundingVolumeHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/BoundingVolumeHierarchy.h -------------------------------------------------------------------------------- /VanyaOpenGL/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Camera.h -------------------------------------------------------------------------------- /VanyaOpenGL/Cloth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Cloth.h -------------------------------------------------------------------------------- /VanyaOpenGL/ClothSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/ClothSystem.h -------------------------------------------------------------------------------- /VanyaOpenGL/CollisionResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/CollisionResponse.h -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/Main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/Main.obj -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.Build.CppClean.log -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.log -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.tlog/VanyaOpenGL.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.tlog/VanyaOpenGL.lastbuildstate -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/VanyaOpenGL.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/VanyaOpenGL.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/vc140.idb -------------------------------------------------------------------------------- /VanyaOpenGL/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Debug/vc140.pdb -------------------------------------------------------------------------------- /VanyaOpenGL/DistanceChecks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/DistanceChecks.h -------------------------------------------------------------------------------- /VanyaOpenGL/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Main.cpp -------------------------------------------------------------------------------- /VanyaOpenGL/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Mesh.h -------------------------------------------------------------------------------- /VanyaOpenGL/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Model.h -------------------------------------------------------------------------------- /VanyaOpenGL/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Particle.h -------------------------------------------------------------------------------- /VanyaOpenGL/ParticleConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/ParticleConstraint.h -------------------------------------------------------------------------------- /VanyaOpenGL/ParticleSpring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/ParticleSpring.h -------------------------------------------------------------------------------- /VanyaOpenGL/ParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/ParticleSystem.h -------------------------------------------------------------------------------- /VanyaOpenGL/Release/VanyaOpenGL.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Release/VanyaOpenGL.log -------------------------------------------------------------------------------- /VanyaOpenGL/Release/VanyaOpenGL.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Release/VanyaOpenGL.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /VanyaOpenGL/Release/VanyaOpenGL.tlog/VanyaOpenGL.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Release/VanyaOpenGL.tlog/VanyaOpenGL.lastbuildstate -------------------------------------------------------------------------------- /VanyaOpenGL/Release/VanyaOpenGL.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VanyaOpenGL/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Release/vc140.pdb -------------------------------------------------------------------------------- /VanyaOpenGL/RigidBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/RigidBody.h -------------------------------------------------------------------------------- /VanyaOpenGL/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Shader.h -------------------------------------------------------------------------------- /VanyaOpenGL/Shaders/reflect/reflect.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Shaders/reflect/reflect.vs -------------------------------------------------------------------------------- /VanyaOpenGL/Shaders/reflect/refract.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Shaders/reflect/refract.frag -------------------------------------------------------------------------------- /VanyaOpenGL/Shaders/skybox/skybox.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Shaders/skybox/skybox.frag -------------------------------------------------------------------------------- /VanyaOpenGL/Shaders/skybox/skybox.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Shaders/skybox/skybox.geo -------------------------------------------------------------------------------- /VanyaOpenGL/Shaders/skybox/skybox.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Shaders/skybox/skybox.vs -------------------------------------------------------------------------------- /VanyaOpenGL/SweepAndPrune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/SweepAndPrune.h -------------------------------------------------------------------------------- /VanyaOpenGL/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/Triangle.h -------------------------------------------------------------------------------- /VanyaOpenGL/VanyaOpenGL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/VanyaOpenGL.vcxproj -------------------------------------------------------------------------------- /VanyaOpenGL/VanyaOpenGL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/VanyaOpenGL.vcxproj.filters -------------------------------------------------------------------------------- /VanyaOpenGL/VanyaOpenGL.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/VanyaOpenGL.vcxproj.user -------------------------------------------------------------------------------- /VanyaOpenGL/obj_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/obj_parser.cpp -------------------------------------------------------------------------------- /VanyaOpenGL/obj_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/obj_parser.h -------------------------------------------------------------------------------- /VanyaOpenGL/scene_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/VanyaOpenGL/scene_object.cpp -------------------------------------------------------------------------------- /clothModel.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanyaeccles/ClothSimulatorOpenGL/HEAD/clothModel.blend --------------------------------------------------------------------------------