mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
renamed files
This commit is contained in:
+3
-3
@@ -15,7 +15,7 @@ cmake_policy(SET CMP0015 NEW)
|
|||||||
|
|
||||||
set(GUI text.cpp)
|
set(GUI text.cpp)
|
||||||
set(UTILS util.cpp)
|
set(UTILS util.cpp)
|
||||||
set(MATH quaternion.cpp vector.cpp matrix.cpp ray.cpp)
|
set(MATH quaternion.cpp vector.cpp matrix.cpp rayCaster.cpp)
|
||||||
set(RENDER lineRenderer.cpp particleEmitter.cpp camera.cpp light.cpp material.cpp mesh.cpp meshData.cpp model.cpp node.cpp quad.cpp box.cpp root.cpp shader.cpp texture.cpp)
|
set(RENDER lineRenderer.cpp particleEmitter.cpp camera.cpp light.cpp material.cpp mesh.cpp meshData.cpp model.cpp node.cpp quad.cpp box.cpp root.cpp shader.cpp texture.cpp)
|
||||||
set(ANIM animationController.cpp animationChannel.cpp animation.cpp animatable.cpp keyframeChannel.cpp driver.cpp)
|
set(ANIM animationController.cpp animationChannel.cpp animation.cpp animatable.cpp keyframeChannel.cpp driver.cpp)
|
||||||
set(ARMATURE skeleton.cpp bone.cpp ikSolver.cpp)
|
set(ARMATURE skeleton.cpp bone.cpp ikSolver.cpp)
|
||||||
@@ -121,8 +121,8 @@ if(BUILD_SAMPLES)
|
|||||||
add_executable(particleEmitterSample particleEmitterSample.cpp)
|
add_executable(particleEmitterSample particleEmitterSample.cpp)
|
||||||
target_link_libraries(particleEmitterSample ${LIB_NAME})
|
target_link_libraries(particleEmitterSample ${LIB_NAME})
|
||||||
|
|
||||||
add_executable(raySample raySample.cpp)
|
add_executable(rayCasterSample rayCasterSample.cpp)
|
||||||
target_link_libraries(raySample ${LIB_NAME})
|
target_link_libraries(rayCasterSample ${LIB_NAME})
|
||||||
|
|
||||||
add_executable(pbrSample pbrSample.cpp)
|
add_executable(pbrSample pbrSample.cpp)
|
||||||
target_link_libraries(pbrSample ${LIB_NAME})
|
target_link_libraries(pbrSample ${LIB_NAME})
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
#include "ray.h"
|
#include "rayCaster.h"
|
||||||
#include "mesh.h"
|
#include "mesh.h"
|
||||||
#include "node.h"
|
#include "node.h"
|
||||||
|
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
#include "material.h"
|
#include "material.h"
|
||||||
#include "assetManager.h"
|
#include "assetManager.h"
|
||||||
#include "lineRenderer.h"
|
#include "lineRenderer.h"
|
||||||
#include "ray.h"
|
#include "rayCaster.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace vb01;
|
using namespace vb01;
|
||||||
Reference in New Issue
Block a user