├── .gitignore ├── Assets ├── Code.meta ├── Code │ ├── DualContouringC#.meta │ ├── DualContouringC# │ │ ├── Givens.cs │ │ ├── Givens.cs.meta │ │ ├── Mat3.cs │ │ ├── Mat3.cs.meta │ │ ├── MatUtils.cs │ │ ├── MatUtils.cs.meta │ │ ├── QefData.cs │ │ ├── QefData.cs.meta │ │ ├── QefSolver.cs │ │ ├── QefSolver.cs.meta │ │ ├── SMat3.cs │ │ ├── SMat3.cs.meta │ │ ├── SVD.cs │ │ ├── SVD.cs.meta │ │ ├── Schur2.cs │ │ ├── Schur2.cs.meta │ │ ├── mesh.cs │ │ └── mesh.cs.meta │ ├── Source.txt │ └── Source.txt.meta ├── DualContouring.cs ├── DualContouring.cs.meta ├── DualContouringDLL.cs ├── DualContouringDLL.cs.meta ├── DualContouringTest.unity ├── DualContouringTest.unity.meta ├── GridCell.cs ├── GridCell.cs.meta ├── Old.meta ├── Old │ ├── DualContouring.unity │ ├── DualContouring.unity.meta │ ├── DualContouring1.cs │ └── DualContouring1.cs.meta ├── Plugins.meta ├── Plugins │ ├── DualContouringPlugin.dll │ └── DualContouringPlugin.dll.meta ├── Readme.txt ├── Readme.txt.meta ├── Resources.meta ├── Resources │ ├── Cells Start.mat │ ├── Cells Start.mat.meta │ ├── Cells.mat │ ├── Cells.mat.meta │ ├── Default.mat │ ├── Default.mat.meta │ ├── ObjectNormals.shader │ ├── ObjectNormals.shader.meta │ ├── StandardDoubleSided.shader │ └── StandardDoubleSided.shader.meta ├── UIConsole.cs └── UIConsole.cs.meta ├── C++Source ├── DualContouringPlugin.meta ├── Source.txt ├── Source.txt.meta └── Testbed │ └── DCTest │ └── DCTest │ ├── DCTest.VC.db │ ├── DCTest │ ├── DCTest.cpp │ ├── DCTest.vcxproj │ ├── DCTest.vcxproj.filters │ ├── Debug │ │ ├── DCTest.log │ │ ├── DCTest.obj │ │ ├── DCTest.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── DCTest.lastbuildstate │ │ │ ├── DCTest.write.1u.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ │ ├── DualContouringPlugin.obj │ │ ├── DualContouringPlugin.res │ │ ├── density.obj │ │ ├── dummy.obj │ │ ├── fast_dc.obj │ │ ├── glm.obj │ │ ├── mesh.obj │ │ ├── ng_mesh_simplify.obj │ │ ├── octree.obj │ │ ├── qef.obj │ │ ├── stdafx.obj │ │ ├── svd.obj │ │ ├── vc140.idb │ │ └── vc140.pdb │ ├── DualContouringPlugin │ │ ├── DualContouringPlugin.VC.VC.opendb.meta │ │ ├── DualContouringPlugin.VC.db │ │ ├── DualContouringPlugin.VC.db.meta │ │ ├── DualContouringPlugin.meta │ │ ├── DualContouringPlugin.sln.meta │ │ ├── DualContouringPlugin │ │ │ ├── DualContouringPlugin.aps │ │ │ ├── DualContouringPlugin.aps.meta │ │ │ ├── DualContouringPlugin.cpp │ │ │ ├── DualContouringPlugin.cpp.meta │ │ │ ├── DualContouringPlugin.h │ │ │ ├── DualContouringPlugin.h.meta │ │ │ ├── DualContouringPlugin.rc │ │ │ ├── DualContouringPlugin.rc.meta │ │ │ ├── DualContouringPlugin.vcxproj │ │ │ ├── DualContouringPlugin.vcxproj.filters │ │ │ ├── DualContouringPlugin.vcxproj.filters.meta │ │ │ ├── DualContouringPlugin.vcxproj.meta │ │ │ ├── DualContouringPlugin.vcxproj.user.meta │ │ │ ├── density.cpp │ │ │ ├── density.cpp.meta │ │ │ ├── density.h │ │ │ ├── density.h.meta │ │ │ ├── fast_dc.cpp │ │ │ ├── fast_dc.cpp.meta │ │ │ ├── fast_dc.h │ │ │ ├── fast_dc.h.meta │ │ │ ├── glm.meta │ │ │ ├── glm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeLists.txt.meta │ │ │ │ ├── common.hpp │ │ │ │ ├── common.hpp.meta │ │ │ │ ├── detail.meta │ │ │ │ ├── detail │ │ │ │ │ ├── _features.hpp │ │ │ │ │ ├── _features.hpp.meta │ │ │ │ │ ├── _fixes.hpp │ │ │ │ │ ├── _fixes.hpp.meta │ │ │ │ │ ├── _noise.hpp │ │ │ │ │ ├── _noise.hpp.meta │ │ │ │ │ ├── _swizzle.hpp │ │ │ │ │ ├── _swizzle.hpp.meta │ │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ │ ├── _swizzle_func.hpp.meta │ │ │ │ │ ├── _vectorize.hpp │ │ │ │ │ ├── _vectorize.hpp.meta │ │ │ │ │ ├── compute_vector_relational.hpp │ │ │ │ │ ├── compute_vector_relational.hpp.meta │ │ │ │ │ ├── dummy.cpp │ │ │ │ │ ├── dummy.cpp.meta │ │ │ │ │ ├── func_common.inl │ │ │ │ │ ├── func_common.inl.meta │ │ │ │ │ ├── func_common_simd.inl │ │ │ │ │ ├── func_common_simd.inl.meta │ │ │ │ │ ├── func_exponential.inl │ │ │ │ │ ├── func_exponential.inl.meta │ │ │ │ │ ├── func_exponential_simd.inl │ │ │ │ │ ├── func_exponential_simd.inl.meta │ │ │ │ │ ├── func_geometric.inl │ │ │ │ │ ├── func_geometric.inl.meta │ │ │ │ │ ├── func_geometric_simd.inl │ │ │ │ │ ├── func_geometric_simd.inl.meta │ │ │ │ │ ├── func_integer.inl │ │ │ │ │ ├── func_integer.inl.meta │ │ │ │ │ ├── func_integer_simd.inl │ │ │ │ │ ├── func_integer_simd.inl.meta │ │ │ │ │ ├── func_matrix.inl │ │ │ │ │ ├── func_matrix.inl.meta │ │ │ │ │ ├── func_matrix_simd.inl │ │ │ │ │ ├── func_matrix_simd.inl.meta │ │ │ │ │ ├── func_packing.inl │ │ │ │ │ ├── func_packing.inl.meta │ │ │ │ │ ├── func_packing_simd.inl │ │ │ │ │ ├── func_packing_simd.inl.meta │ │ │ │ │ ├── func_trigonometric.inl │ │ │ │ │ ├── func_trigonometric.inl.meta │ │ │ │ │ ├── func_trigonometric_simd.inl │ │ │ │ │ ├── func_trigonometric_simd.inl.meta │ │ │ │ │ ├── func_vector_relational.inl │ │ │ │ │ ├── func_vector_relational.inl.meta │ │ │ │ │ ├── func_vector_relational_simd.inl │ │ │ │ │ ├── func_vector_relational_simd.inl.meta │ │ │ │ │ ├── glm.cpp │ │ │ │ │ ├── glm.cpp.meta │ │ │ │ │ ├── qualifier.hpp │ │ │ │ │ ├── qualifier.hpp.meta │ │ │ │ │ ├── setup.hpp │ │ │ │ │ ├── setup.hpp.meta │ │ │ │ │ ├── type_float.hpp │ │ │ │ │ ├── type_float.hpp.meta │ │ │ │ │ ├── type_gentype.hpp │ │ │ │ │ ├── type_gentype.hpp.meta │ │ │ │ │ ├── type_gentype.inl │ │ │ │ │ ├── type_gentype.inl.meta │ │ │ │ │ ├── type_half.hpp │ │ │ │ │ ├── type_half.hpp.meta │ │ │ │ │ ├── type_half.inl │ │ │ │ │ ├── type_half.inl.meta │ │ │ │ │ ├── type_int.hpp │ │ │ │ │ ├── type_int.hpp.meta │ │ │ │ │ ├── type_mat.hpp │ │ │ │ │ ├── type_mat.hpp.meta │ │ │ │ │ ├── type_mat.inl │ │ │ │ │ ├── type_mat.inl.meta │ │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ │ ├── type_mat2x2.hpp.meta │ │ │ │ │ ├── type_mat2x2.inl │ │ │ │ │ ├── type_mat2x2.inl.meta │ │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ │ ├── type_mat2x3.hpp.meta │ │ │ │ │ ├── type_mat2x3.inl │ │ │ │ │ ├── type_mat2x3.inl.meta │ │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ │ ├── type_mat2x4.hpp.meta │ │ │ │ │ ├── type_mat2x4.inl │ │ │ │ │ ├── type_mat2x4.inl.meta │ │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ │ ├── type_mat3x2.hpp.meta │ │ │ │ │ ├── type_mat3x2.inl │ │ │ │ │ ├── type_mat3x2.inl.meta │ │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ │ ├── type_mat3x3.hpp.meta │ │ │ │ │ ├── type_mat3x3.inl │ │ │ │ │ ├── type_mat3x3.inl.meta │ │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ │ ├── type_mat3x4.hpp.meta │ │ │ │ │ ├── type_mat3x4.inl │ │ │ │ │ ├── type_mat3x4.inl.meta │ │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ │ ├── type_mat4x2.hpp.meta │ │ │ │ │ ├── type_mat4x2.inl │ │ │ │ │ ├── type_mat4x2.inl.meta │ │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ │ ├── type_mat4x3.hpp.meta │ │ │ │ │ ├── type_mat4x3.inl │ │ │ │ │ ├── type_mat4x3.inl.meta │ │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ │ ├── type_mat4x4.hpp.meta │ │ │ │ │ ├── type_mat4x4.inl │ │ │ │ │ ├── type_mat4x4.inl.meta │ │ │ │ │ ├── type_mat4x4_simd.inl │ │ │ │ │ ├── type_mat4x4_simd.inl.meta │ │ │ │ │ ├── type_vec.hpp │ │ │ │ │ ├── type_vec.hpp.meta │ │ │ │ │ ├── type_vec.inl │ │ │ │ │ ├── type_vec.inl.meta │ │ │ │ │ ├── type_vec1.hpp │ │ │ │ │ ├── type_vec1.hpp.meta │ │ │ │ │ ├── type_vec1.inl │ │ │ │ │ ├── type_vec1.inl.meta │ │ │ │ │ ├── type_vec2.hpp │ │ │ │ │ ├── type_vec2.hpp.meta │ │ │ │ │ ├── type_vec2.inl │ │ │ │ │ ├── type_vec2.inl.meta │ │ │ │ │ ├── type_vec3.hpp │ │ │ │ │ ├── type_vec3.hpp.meta │ │ │ │ │ ├── type_vec3.inl │ │ │ │ │ ├── type_vec3.inl.meta │ │ │ │ │ ├── type_vec4.hpp │ │ │ │ │ ├── type_vec4.hpp.meta │ │ │ │ │ ├── type_vec4.inl │ │ │ │ │ ├── type_vec4.inl.meta │ │ │ │ │ ├── type_vec4_simd.inl │ │ │ │ │ └── type_vec4_simd.inl.meta │ │ │ │ ├── exponential.hpp │ │ │ │ ├── exponential.hpp.meta │ │ │ │ ├── ext.hpp │ │ │ │ ├── ext.hpp.meta │ │ │ │ ├── ext.meta │ │ │ │ ├── ext │ │ │ │ │ ├── vec1.hpp │ │ │ │ │ ├── vec1.hpp.meta │ │ │ │ │ ├── vec1.inl │ │ │ │ │ ├── vec1.inl.meta │ │ │ │ │ ├── vector_relational.hpp │ │ │ │ │ ├── vector_relational.hpp.meta │ │ │ │ │ ├── vector_relational.inl │ │ │ │ │ └── vector_relational.inl.meta │ │ │ │ ├── fwd.hpp │ │ │ │ ├── fwd.hpp.meta │ │ │ │ ├── geometric.hpp │ │ │ │ ├── geometric.hpp.meta │ │ │ │ ├── glm.hpp │ │ │ │ ├── glm.hpp.meta │ │ │ │ ├── gtc.meta │ │ │ │ ├── gtc │ │ │ │ │ ├── bitfield.hpp │ │ │ │ │ ├── bitfield.hpp.meta │ │ │ │ │ ├── bitfield.inl │ │ │ │ │ ├── bitfield.inl.meta │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ ├── color_space.hpp.meta │ │ │ │ │ ├── color_space.inl │ │ │ │ │ ├── color_space.inl.meta │ │ │ │ │ ├── constants.hpp │ │ │ │ │ ├── constants.hpp.meta │ │ │ │ │ ├── constants.inl │ │ │ │ │ ├── constants.inl.meta │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ ├── epsilon.hpp.meta │ │ │ │ │ ├── epsilon.inl │ │ │ │ │ ├── epsilon.inl.meta │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── integer.hpp.meta │ │ │ │ │ ├── integer.inl │ │ │ │ │ ├── integer.inl.meta │ │ │ │ │ ├── matrix_access.hpp │ │ │ │ │ ├── matrix_access.hpp.meta │ │ │ │ │ ├── matrix_access.inl │ │ │ │ │ ├── matrix_access.inl.meta │ │ │ │ │ ├── matrix_integer.hpp │ │ │ │ │ ├── matrix_integer.hpp.meta │ │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ │ ├── matrix_inverse.hpp.meta │ │ │ │ │ ├── matrix_inverse.inl │ │ │ │ │ ├── matrix_inverse.inl.meta │ │ │ │ │ ├── matrix_transform.hpp │ │ │ │ │ ├── matrix_transform.hpp.meta │ │ │ │ │ ├── matrix_transform.inl │ │ │ │ │ ├── matrix_transform.inl.meta │ │ │ │ │ ├── noise.hpp │ │ │ │ │ ├── noise.hpp.meta │ │ │ │ │ ├── noise.inl │ │ │ │ │ ├── noise.inl.meta │ │ │ │ │ ├── packing.hpp │ │ │ │ │ ├── packing.hpp.meta │ │ │ │ │ ├── packing.inl │ │ │ │ │ ├── packing.inl.meta │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ ├── quaternion.hpp.meta │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ ├── quaternion.inl.meta │ │ │ │ │ ├── quaternion_simd.inl │ │ │ │ │ ├── quaternion_simd.inl.meta │ │ │ │ │ ├── random.hpp │ │ │ │ │ ├── random.hpp.meta │ │ │ │ │ ├── random.inl │ │ │ │ │ ├── random.inl.meta │ │ │ │ │ ├── reciprocal.hpp │ │ │ │ │ ├── reciprocal.hpp.meta │ │ │ │ │ ├── reciprocal.inl │ │ │ │ │ ├── reciprocal.inl.meta │ │ │ │ │ ├── round.hpp │ │ │ │ │ ├── round.hpp.meta │ │ │ │ │ ├── round.inl │ │ │ │ │ ├── round.inl.meta │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ ├── type_aligned.hpp.meta │ │ │ │ │ ├── type_precision.hpp │ │ │ │ │ ├── type_precision.hpp.meta │ │ │ │ │ ├── type_precision.inl │ │ │ │ │ ├── type_precision.inl.meta │ │ │ │ │ ├── type_ptr.hpp │ │ │ │ │ ├── type_ptr.hpp.meta │ │ │ │ │ ├── type_ptr.inl │ │ │ │ │ ├── type_ptr.inl.meta │ │ │ │ │ ├── ulp.hpp │ │ │ │ │ ├── ulp.hpp.meta │ │ │ │ │ ├── ulp.inl │ │ │ │ │ ├── ulp.inl.meta │ │ │ │ │ ├── vec1.hpp │ │ │ │ │ ├── vec1.hpp.meta │ │ │ │ │ ├── vec1.inl │ │ │ │ │ └── vec1.inl.meta │ │ │ │ ├── gtx.meta │ │ │ │ ├── gtx │ │ │ │ │ ├── associated_min_max.hpp │ │ │ │ │ ├── associated_min_max.hpp.meta │ │ │ │ │ ├── associated_min_max.inl │ │ │ │ │ ├── associated_min_max.inl.meta │ │ │ │ │ ├── bit.hpp │ │ │ │ │ ├── bit.hpp.meta │ │ │ │ │ ├── bit.inl │ │ │ │ │ ├── bit.inl.meta │ │ │ │ │ ├── closest_point.hpp │ │ │ │ │ ├── closest_point.hpp.meta │ │ │ │ │ ├── closest_point.inl │ │ │ │ │ ├── closest_point.inl.meta │ │ │ │ │ ├── color_encoding.hpp │ │ │ │ │ ├── color_encoding.hpp.meta │ │ │ │ │ ├── color_encoding.inl │ │ │ │ │ ├── color_encoding.inl.meta │ │ │ │ │ ├── color_space.hpp │ │ │ │ │ ├── color_space.hpp.meta │ │ │ │ │ ├── color_space.inl │ │ │ │ │ ├── color_space.inl.meta │ │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ │ ├── color_space_YCoCg.hpp.meta │ │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ │ ├── color_space_YCoCg.inl.meta │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── common.hpp.meta │ │ │ │ │ ├── common.inl │ │ │ │ │ ├── common.inl.meta │ │ │ │ │ ├── compatibility.hpp │ │ │ │ │ ├── compatibility.hpp.meta │ │ │ │ │ ├── compatibility.inl │ │ │ │ │ ├── compatibility.inl.meta │ │ │ │ │ ├── component_wise.hpp │ │ │ │ │ ├── component_wise.hpp.meta │ │ │ │ │ ├── component_wise.inl │ │ │ │ │ ├── component_wise.inl.meta │ │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ │ ├── dual_quaternion.hpp.meta │ │ │ │ │ ├── dual_quaternion.inl │ │ │ │ │ ├── dual_quaternion.inl.meta │ │ │ │ │ ├── euler_angles.hpp │ │ │ │ │ ├── euler_angles.hpp.meta │ │ │ │ │ ├── euler_angles.inl │ │ │ │ │ ├── euler_angles.inl.meta │ │ │ │ │ ├── extend.hpp │ │ │ │ │ ├── extend.hpp.meta │ │ │ │ │ ├── extend.inl │ │ │ │ │ ├── extend.inl.meta │ │ │ │ │ ├── extended_min_max.hpp │ │ │ │ │ ├── extended_min_max.hpp.meta │ │ │ │ │ ├── extended_min_max.inl │ │ │ │ │ ├── extended_min_max.inl.meta │ │ │ │ │ ├── exterior_product.hpp │ │ │ │ │ ├── exterior_product.hpp.meta │ │ │ │ │ ├── exterior_product.inl │ │ │ │ │ ├── exterior_product.inl.meta │ │ │ │ │ ├── fast_exponential.hpp │ │ │ │ │ ├── fast_exponential.hpp.meta │ │ │ │ │ ├── fast_exponential.inl │ │ │ │ │ ├── fast_exponential.inl.meta │ │ │ │ │ ├── fast_square_root.hpp │ │ │ │ │ ├── fast_square_root.hpp.meta │ │ │ │ │ ├── fast_square_root.inl │ │ │ │ │ ├── fast_square_root.inl.meta │ │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ │ ├── fast_trigonometry.hpp.meta │ │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ │ ├── fast_trigonometry.inl.meta │ │ │ │ │ ├── float_notmalize.inl │ │ │ │ │ ├── float_notmalize.inl.meta │ │ │ │ │ ├── functions.hpp │ │ │ │ │ ├── functions.hpp.meta │ │ │ │ │ ├── functions.inl │ │ │ │ │ ├── functions.inl.meta │ │ │ │ │ ├── gradient_paint.hpp │ │ │ │ │ ├── gradient_paint.hpp.meta │ │ │ │ │ ├── gradient_paint.inl │ │ │ │ │ ├── gradient_paint.inl.meta │ │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ │ ├── handed_coordinate_space.hpp.meta │ │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ │ ├── handed_coordinate_space.inl.meta │ │ │ │ │ ├── hash.hpp │ │ │ │ │ ├── hash.hpp.meta │ │ │ │ │ ├── hash.inl │ │ │ │ │ ├── hash.inl.meta │ │ │ │ │ ├── integer.hpp │ │ │ │ │ ├── integer.hpp.meta │ │ │ │ │ ├── integer.inl │ │ │ │ │ ├── integer.inl.meta │ │ │ │ │ ├── intersect.hpp │ │ │ │ │ ├── intersect.hpp.meta │ │ │ │ │ ├── intersect.inl │ │ │ │ │ ├── intersect.inl.meta │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── io.hpp.meta │ │ │ │ │ ├── io.inl │ │ │ │ │ ├── io.inl.meta │ │ │ │ │ ├── log_base.hpp │ │ │ │ │ ├── log_base.hpp.meta │ │ │ │ │ ├── log_base.inl │ │ │ │ │ ├── log_base.inl.meta │ │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ │ ├── matrix_cross_product.hpp.meta │ │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ │ ├── matrix_cross_product.inl.meta │ │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ │ ├── matrix_decompose.hpp.meta │ │ │ │ │ ├── matrix_decompose.inl │ │ │ │ │ ├── matrix_decompose.inl.meta │ │ │ │ │ ├── matrix_factorisation.hpp │ │ │ │ │ ├── matrix_factorisation.hpp.meta │ │ │ │ │ ├── matrix_factorisation.inl │ │ │ │ │ ├── matrix_factorisation.inl.meta │ │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ │ ├── matrix_interpolation.hpp.meta │ │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ │ ├── matrix_interpolation.inl.meta │ │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ │ ├── matrix_major_storage.hpp.meta │ │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ │ ├── matrix_major_storage.inl.meta │ │ │ │ │ ├── matrix_operation.hpp │ │ │ │ │ ├── matrix_operation.hpp.meta │ │ │ │ │ ├── matrix_operation.inl │ │ │ │ │ ├── matrix_operation.inl.meta │ │ │ │ │ ├── matrix_query.hpp │ │ │ │ │ ├── matrix_query.hpp.meta │ │ │ │ │ ├── matrix_query.inl │ │ │ │ │ ├── matrix_query.inl.meta │ │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ │ ├── matrix_transform_2d.hpp.meta │ │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ │ ├── matrix_transform_2d.inl.meta │ │ │ │ │ ├── mixed_product.hpp │ │ │ │ │ ├── mixed_product.hpp.meta │ │ │ │ │ ├── mixed_product.inl │ │ │ │ │ ├── mixed_product.inl.meta │ │ │ │ │ ├── norm.hpp │ │ │ │ │ ├── norm.hpp.meta │ │ │ │ │ ├── norm.inl │ │ │ │ │ ├── norm.inl.meta │ │ │ │ │ ├── normal.hpp │ │ │ │ │ ├── normal.hpp.meta │ │ │ │ │ ├── normal.inl │ │ │ │ │ ├── normal.inl.meta │ │ │ │ │ ├── normalize_dot.hpp │ │ │ │ │ ├── normalize_dot.hpp.meta │ │ │ │ │ ├── normalize_dot.inl │ │ │ │ │ ├── normalize_dot.inl.meta │ │ │ │ │ ├── number_precision.hpp │ │ │ │ │ ├── number_precision.hpp.meta │ │ │ │ │ ├── number_precision.inl │ │ │ │ │ ├── number_precision.inl.meta │ │ │ │ │ ├── optimum_pow.hpp │ │ │ │ │ ├── optimum_pow.hpp.meta │ │ │ │ │ ├── optimum_pow.inl │ │ │ │ │ ├── optimum_pow.inl.meta │ │ │ │ │ ├── orthonormalize.hpp │ │ │ │ │ ├── orthonormalize.hpp.meta │ │ │ │ │ ├── orthonormalize.inl │ │ │ │ │ ├── orthonormalize.inl.meta │ │ │ │ │ ├── perpendicular.hpp │ │ │ │ │ ├── perpendicular.hpp.meta │ │ │ │ │ ├── perpendicular.inl │ │ │ │ │ ├── perpendicular.inl.meta │ │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ │ ├── polar_coordinates.hpp.meta │ │ │ │ │ ├── polar_coordinates.inl │ │ │ │ │ ├── polar_coordinates.inl.meta │ │ │ │ │ ├── projection.hpp │ │ │ │ │ ├── projection.hpp.meta │ │ │ │ │ ├── projection.inl │ │ │ │ │ ├── projection.inl.meta │ │ │ │ │ ├── quaternion.hpp │ │ │ │ │ ├── quaternion.hpp.meta │ │ │ │ │ ├── quaternion.inl │ │ │ │ │ ├── quaternion.inl.meta │ │ │ │ │ ├── range.hpp │ │ │ │ │ ├── range.hpp.meta │ │ │ │ │ ├── raw_data.hpp │ │ │ │ │ ├── raw_data.hpp.meta │ │ │ │ │ ├── raw_data.inl │ │ │ │ │ ├── raw_data.inl.meta │ │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ │ ├── rotate_normalized_axis.hpp.meta │ │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ │ ├── rotate_normalized_axis.inl.meta │ │ │ │ │ ├── rotate_vector.hpp │ │ │ │ │ ├── rotate_vector.hpp.meta │ │ │ │ │ ├── rotate_vector.inl │ │ │ │ │ ├── rotate_vector.inl.meta │ │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ │ ├── scalar_multiplication.hpp.meta │ │ │ │ │ ├── scalar_relational.hpp │ │ │ │ │ ├── scalar_relational.hpp.meta │ │ │ │ │ ├── scalar_relational.inl │ │ │ │ │ ├── scalar_relational.inl.meta │ │ │ │ │ ├── spline.hpp │ │ │ │ │ ├── spline.hpp.meta │ │ │ │ │ ├── spline.inl │ │ │ │ │ ├── spline.inl.meta │ │ │ │ │ ├── std_based_type.hpp │ │ │ │ │ ├── std_based_type.hpp.meta │ │ │ │ │ ├── std_based_type.inl │ │ │ │ │ ├── std_based_type.inl.meta │ │ │ │ │ ├── string_cast.hpp │ │ │ │ │ ├── string_cast.hpp.meta │ │ │ │ │ ├── string_cast.inl │ │ │ │ │ ├── string_cast.inl.meta │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── transform.hpp.meta │ │ │ │ │ ├── transform.inl │ │ │ │ │ ├── transform.inl.meta │ │ │ │ │ ├── transform2.hpp │ │ │ │ │ ├── transform2.hpp.meta │ │ │ │ │ ├── transform2.inl │ │ │ │ │ ├── transform2.inl.meta │ │ │ │ │ ├── type_aligned.hpp │ │ │ │ │ ├── type_aligned.hpp.meta │ │ │ │ │ ├── type_aligned.inl │ │ │ │ │ ├── type_aligned.inl.meta │ │ │ │ │ ├── type_trait.hpp │ │ │ │ │ ├── type_trait.hpp.meta │ │ │ │ │ ├── type_trait.inl │ │ │ │ │ ├── type_trait.inl.meta │ │ │ │ │ ├── vec_swizzle.hpp │ │ │ │ │ ├── vec_swizzle.hpp.meta │ │ │ │ │ ├── vector_angle.hpp │ │ │ │ │ ├── vector_angle.hpp.meta │ │ │ │ │ ├── vector_angle.inl │ │ │ │ │ ├── vector_angle.inl.meta │ │ │ │ │ ├── vector_query.hpp │ │ │ │ │ ├── vector_query.hpp.meta │ │ │ │ │ ├── vector_query.inl │ │ │ │ │ ├── vector_query.inl.meta │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ ├── wrap.hpp.meta │ │ │ │ │ ├── wrap.inl │ │ │ │ │ └── wrap.inl.meta │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.hpp.meta │ │ │ │ ├── mat2x2.hpp │ │ │ │ ├── mat2x2.hpp.meta │ │ │ │ ├── mat2x3.hpp │ │ │ │ ├── mat2x3.hpp.meta │ │ │ │ ├── mat2x4.hpp │ │ │ │ ├── mat2x4.hpp.meta │ │ │ │ ├── mat3x2.hpp │ │ │ │ ├── mat3x2.hpp.meta │ │ │ │ ├── mat3x3.hpp │ │ │ │ ├── mat3x3.hpp.meta │ │ │ │ ├── mat3x4.hpp │ │ │ │ ├── mat3x4.hpp.meta │ │ │ │ ├── mat4x2.hpp │ │ │ │ ├── mat4x2.hpp.meta │ │ │ │ ├── mat4x3.hpp │ │ │ │ ├── mat4x3.hpp.meta │ │ │ │ ├── mat4x4.hpp │ │ │ │ ├── mat4x4.hpp.meta │ │ │ │ ├── matrix.hpp │ │ │ │ ├── matrix.hpp.meta │ │ │ │ ├── packing.hpp │ │ │ │ ├── packing.hpp.meta │ │ │ │ ├── simd.meta │ │ │ │ ├── simd │ │ │ │ │ ├── common.h │ │ │ │ │ ├── common.h.meta │ │ │ │ │ ├── exponential.h │ │ │ │ │ ├── exponential.h.meta │ │ │ │ │ ├── geometric.h │ │ │ │ │ ├── geometric.h.meta │ │ │ │ │ ├── integer.h │ │ │ │ │ ├── integer.h.meta │ │ │ │ │ ├── matrix.h │ │ │ │ │ ├── matrix.h.meta │ │ │ │ │ ├── packing.h │ │ │ │ │ ├── packing.h.meta │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── platform.h.meta │ │ │ │ │ ├── trigonometric.h │ │ │ │ │ ├── trigonometric.h.meta │ │ │ │ │ ├── vector_relational.h │ │ │ │ │ └── vector_relational.h.meta │ │ │ │ ├── trigonometric.hpp │ │ │ │ ├── trigonometric.hpp.meta │ │ │ │ ├── vec2.hpp │ │ │ │ ├── vec2.hpp.meta │ │ │ │ ├── vec3.hpp │ │ │ │ ├── vec3.hpp.meta │ │ │ │ ├── vec4.hpp │ │ │ │ ├── vec4.hpp.meta │ │ │ │ ├── vector_relational.hpp │ │ │ │ └── vector_relational.hpp.meta │ │ │ ├── mesh.cpp │ │ │ ├── mesh.cpp.meta │ │ │ ├── mesh.h │ │ │ ├── mesh.h.meta │ │ │ ├── ng_mesh_simplify.cpp │ │ │ ├── ng_mesh_simplify.cpp.meta │ │ │ ├── ng_mesh_simplify.h │ │ │ ├── ng_mesh_simplify.h.meta │ │ │ ├── octree.cpp │ │ │ ├── octree.cpp.meta │ │ │ ├── octree.h │ │ │ ├── octree.h.meta │ │ │ ├── qef.cpp │ │ │ ├── qef.cpp.meta │ │ │ ├── qef.h │ │ │ ├── qef.h.meta │ │ │ ├── qef_simd.h │ │ │ ├── qef_simd.h.meta │ │ │ ├── resource.h │ │ │ ├── resource.h.meta │ │ │ ├── svd.cpp │ │ │ ├── svd.cpp.meta │ │ │ ├── svd.h │ │ │ ├── svd.h.meta │ │ │ ├── x64.meta │ │ │ └── x64 │ │ │ │ ├── Release.meta │ │ │ │ └── Release │ │ │ │ ├── DualCont.218501E5.tlog │ │ │ │ ├── CL.command.1.tlog │ │ │ │ ├── CL.read.1.tlog │ │ │ │ ├── CL.write.1.tlog │ │ │ │ ├── DualContouringPlugin.lastbuildstate │ │ │ │ ├── DualContouringPlugin.write.1u.tlog │ │ │ │ ├── link.command.1.tlog │ │ │ │ ├── link.read.1.tlog │ │ │ │ ├── link.write.1.tlog │ │ │ │ ├── rc.command.1.tlog │ │ │ │ ├── rc.read.1.tlog │ │ │ │ └── rc.write.1.tlog │ │ │ │ ├── DualContouringPlugin.Build.CppClean.log │ │ │ │ ├── DualContouringPlugin.log │ │ │ │ ├── DualContouringPlugin.obj │ │ │ │ ├── DualContouringPlugin.res │ │ │ │ ├── density.obj │ │ │ │ ├── dummy.obj │ │ │ │ ├── fast_dc.obj │ │ │ │ ├── glm.obj │ │ │ │ ├── mesh.obj │ │ │ │ ├── ng_mesh_simplify.obj │ │ │ │ ├── octree.obj │ │ │ │ ├── qef.obj │ │ │ │ ├── svd.obj │ │ │ │ └── vc140.pdb │ │ └── x64 │ │ │ └── Release │ │ │ ├── DualContouringPlugin.exp │ │ │ ├── DualContouringPlugin.iobj │ │ │ ├── DualContouringPlugin.ipdb │ │ │ ├── DualContouringPlugin.lib │ │ │ └── DualContouringPlugin.pdb │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h │ └── Debug │ ├── DCTest.exe │ ├── DCTest.exp │ ├── DCTest.ilk │ ├── DCTest.lib │ └── DCTest.pdb ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /[Ll]ibrary/ 2 | /[Tt]emp/ 3 | /[Oo]bj/ 4 | /[Bb]uild/ 5 | 6 | # Autogenerated VS/MD solution and project files 7 | *.csproj 8 | *.unityproj 9 | *.sln 10 | *.suo 11 | *.tmp 12 | *.user 13 | *.userprefs 14 | *.pidb 15 | *.booproj 16 | 17 | # Unity3D generated meta files 18 | *.pidb.meta 19 | 20 | # Unity3D Generated File On Crash Reports 21 | sysinfo.txt 22 | -------------------------------------------------------------------------------- /Assets/Code.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5a8b7b577ee3da458b367d3954133a7 3 | folderAsset: yes 4 | timeCreated: 1503637490 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ca7bb7119ada084bab502df33c5ca45 3 | folderAsset: yes 4 | timeCreated: 1502951026 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/Givens.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f0077a3ca59919428744c85664f36bf 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/Mat3.cs: -------------------------------------------------------------------------------- 1 | public class Mat3 2 | { 3 | public float m00, m01, m02, m10, m11, m12, m20, m21, m22; 4 | public Mat3() 5 | { } 6 | public Mat3(float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22) { } 7 | public void clear() { } 8 | public void set(float m00, float m01, float m02, float m10, float m11, float m12, float m20, float m21, float m22) { } 9 | public void set(Mat3 rhs) { } 10 | public void setSymmetric(float a00, float a01, float a02, float a11, float a12, float a22) { } 11 | public void setSymmetric(SMat3 rhs) { } 12 | 13 | private Mat3(Mat3 rhs) { } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/Mat3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ecb96855840cb74f8aac264b8b6b66c 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/MatUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54ffd108543482e4d82d492f50c93ce7 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/QefData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 229f2bff1f7c7d24dac008aa723f6ca1 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/QefSolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f0654d2848620548b190cddb0bc58c7 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/SMat3.cs: -------------------------------------------------------------------------------- 1 | public class SMat3 2 | { 3 | public float m00, m01, m02, m11, m12, m22; 4 | 5 | public SMat3() 6 | { 7 | clear(); 8 | } 9 | 10 | public SMat3(float m00, float m01, float m02, float m11, float m12, float m22) 11 | { 12 | this.setSymmetric(m00, m01, m02, m11, m12, m22); 13 | } 14 | 15 | public void clear() 16 | { 17 | this.setSymmetric(0, 0, 0, 0, 0, 0); 18 | } 19 | 20 | public void setSymmetric(float a00, float a01, float a02, float a11, float a12, float a22) 21 | { 22 | this.m00 = a00; 23 | this.m01 = a01; 24 | this.m02 = a02; 25 | this.m11 = a11; 26 | this.m12 = a12; 27 | this.m22 = a22; 28 | } 29 | 30 | public void setSymmetric(SMat3 rhs) 31 | { 32 | this.setSymmetric(rhs.m00, rhs.m01, rhs.m02, rhs.m11, rhs.m12, rhs.m22); 33 | } 34 | 35 | private SMat3(SMat3 rhs) 36 | { 37 | this.setSymmetric(rhs); 38 | } 39 | } -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/SMat3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 724634b3e33e3dc449bb92832cfe84cb 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/SVD.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5888dbdaabf3d384fbefa549bd8fee8f 3 | timeCreated: 1503637707 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/Schur2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7442a362b27bba4e998405e90bef79e 3 | timeCreated: 18446744011573954816 4 | MonoImporter: 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/mesh.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using UnityEngine; 3 | 4 | public struct MeshVertex 5 | { 6 | public Vector3 xyz, normal; 7 | 8 | public MeshVertex(Vector3 _xyz, Vector3 _normal) 9 | { 10 | xyz = _xyz; 11 | normal = _normal; 12 | } 13 | } 14 | 15 | public class DCMesh 16 | { 17 | public List vertexArrayObj_, vertexBuffer_, indexBuffer_; 18 | public int numIndices_; 19 | 20 | public DCMesh() 21 | { 22 | vertexArrayObj_ = new List(); 23 | vertexBuffer_ = new List(); 24 | indexBuffer_ = new List(); 25 | numIndices_ = 0; 26 | 27 | } 28 | 29 | public void initialise() 30 | { 31 | 32 | } 33 | public void uploadData(List vertices, List indices) 34 | { 35 | 36 | } 37 | 38 | 39 | public void destroy() 40 | { 41 | 42 | } 43 | 44 | } 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Assets/Code/DualContouringC#/mesh.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 590f5d8c408003543929fb3853490df2 3 | timeCreated: 1503637675 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {fileID: 7250588514170254948, guid: 0000000000000000d000000000000000, type: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Code/Source.txt: -------------------------------------------------------------------------------- 1 | https://github.com/tuckbone/DualContouringCSharp -------------------------------------------------------------------------------- /Assets/Code/Source.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 715b4910eb8ac8d42a7af952eb323373 3 | timeCreated: 1503637802 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/DualContouring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e68877f6f8c51f94084052bcc5ace4ef 3 | timeCreated: 1503173426 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/DualContouringDLL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 610ab2c3239f9f54f8a644e176bd3377 3 | timeCreated: 1503516796 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/DualContouringTest.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9561a6822e92dd04dbfbe3729a62a30b 3 | timeCreated: 1503035074 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/GridCell.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eb36362ffe6adc44b0970fd343307e5 3 | timeCreated: 1503173854 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Old.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b28731071d0feaa4ab238269cd08d89f 3 | folderAsset: yes 4 | timeCreated: 1503637395 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Old/DualContouring.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ef854cea22e41643bb8b52ee62a07f8 3 | timeCreated: 18446744011573954816 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Old/DualContouring1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5883bdf3f38a5d94caeef3e56889be91 3 | timeCreated: 1503035482 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8f5a7048d16c0f40bd6b49cb8d3e2a5 3 | folderAsset: yes 4 | timeCreated: 1503428661 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/DualContouringPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/Assets/Plugins/DualContouringPlugin.dll -------------------------------------------------------------------------------- /Assets/Plugins/DualContouringPlugin.dll.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f74b741828a598e499f514fb497eba77 3 | timeCreated: 1503861856 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /Assets/Readme.txt: -------------------------------------------------------------------------------- 1 | Slightly modified versions of both 2 | 3 | https://github.com/nickgildea/DualContouringSample 4 | 5 | https://github.com/nickgildea/fast_dual_contouring -------------------------------------------------------------------------------- /Assets/Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e506713f89b069048aae4d1284d4b207 3 | timeCreated: 1503637802 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcafc459fe40f6e4788b97bca5eba98e 3 | folderAsset: yes 4 | timeCreated: 1502975428 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/Cells Start.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40e38eb2d13ae0c4b89ef12e9ca07414 3 | timeCreated: 18446744011573954816 4 | NativeFormatImporter: 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Cells.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a04c12a3ed74244f91c8341cfea3d12 3 | timeCreated: 18446744011573954816 4 | NativeFormatImporter: 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Default.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 756e7ecc54c8faf4b825810606d45af0 3 | timeCreated: 18446744011573954816 4 | NativeFormatImporter: 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/ObjectNormals.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a5fbaa4a05440a42b22cda8bfaa1997 3 | timeCreated: 1503712050 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Resources/StandardDoubleSided.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6a536d615a181949b6008820445687c 3 | timeCreated: 1503343787 4 | licenseType: Pro 5 | ShaderImporter: 6 | defaultTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/UIConsole.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class UIConsole : MonoBehaviour { 6 | 7 | 8 | public static UIConsole instance; 9 | public UnityEngine.UI.Text text; 10 | // Use this for initialization 11 | 12 | public void Awake() { 13 | instance = this; 14 | text = this.gameObject.GetComponent(); 15 | } 16 | 17 | public void AddText(string t) { 18 | text.text += t; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Assets/UIConsole.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d20faa2b9cb0a184ea8c9eedb81bd0c3 3 | timeCreated: 1503539185 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /C++Source/DualContouringPlugin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f51ccef7a42fe744d92bceb0428e632a 3 | folderAsset: yes 4 | timeCreated: 1503637883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Source.txt: -------------------------------------------------------------------------------- 1 | Slightly modified versions of both 2 | 3 | https://github.com/nickgildea/DualContouringSample 4 | 5 | https://github.com/nickgildea/fast_dual_contouring -------------------------------------------------------------------------------- /C++Source/Source.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7983de25641b9794f83a0e1bb2758ca5 3 | timeCreated: 1503637802 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest.VC.db -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DCTest.cpp: -------------------------------------------------------------------------------- 1 | // DCTest.cpp : Defines the entry point for the console application. 2 | // 3 | 4 | #include 5 | #include "DualContouringPlugin\DualContouringPlugin\DualContouringPlugin.h" 6 | 7 | int main() 8 | { 9 | FastDualContourTest(); 10 | 11 | int exit = 0; 12 | std::cin >> exit; 13 | return 0; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.log: -------------------------------------------------------------------------------- 1 |  DualContouringPlugin.cpp 2 | c:\users\dylan\documents\github\unitydualcontouringplugin\c++source\testbed\dctest\dctest\dctest\dualcontouringplugin\dualcontouringplugin\dualcontouringplugin.h(7): warning C4005: 'EXPORT': macro redefinition 3 | c:\users\dylan\documents\github\unitydualcontouringplugin\c++source\testbed\dctest\dctest\dctest\dualcontouringplugin\dualcontouringplugin\dualcontouringplugin.h(4): note: see previous definition of 'EXPORT' 4 | c:\users\dylan\documents\github\unitydualcontouringplugin\c++source\testbed\dctest\dctest\dctest\dualcontouringplugin\dualcontouringplugin\dualcontouringplugin.cpp(186): warning C4244: '=': conversion from 'int' to 'float', possible loss of data 5 | Generating Code... 6 | Compiling... 7 | fast_dc.cpp 8 | Generating Code... 9 | Skipping... (no relevant changes detected) 10 | ng_mesh_simplify.cpp 11 | DCTest.vcxproj -> C:\Users\Dylan\Documents\github\UnityDualContouringPlugin\C++Source\Testbed\DCTest\DCTest\Debug\DCTest.exe 12 | DCTest.vcxproj -> C:\Users\Dylan\Documents\github\UnityDualContouringPlugin\C++Source\Testbed\DCTest\DCTest\Debug\DCTest.pdb (Full PDB) 13 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/DCTest.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|Win32|C:\Users\Dylan\Documents\github\UnityDualContouringPlugin\C++Source\Testbed\DCTest\DCTest\| 3 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/DCTest.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/DCTest.write.1u.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DCTest.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DualContouringPlugin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DualContouringPlugin.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DualContouringPlugin.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/DualContouringPlugin.res -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/density.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/density.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/dummy.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/dummy.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/fast_dc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/fast_dc.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/glm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/glm.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/mesh.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/ng_mesh_simplify.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/ng_mesh_simplify.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/octree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/octree.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/qef.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/qef.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/stdafx.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/svd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/svd.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/vc140.idb -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/Debug/vc140.pdb -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin.VC.VC.opendb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0072dc34d74237e48832aa75bc1923f7 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin.VC.db -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin.VC.db.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a179ab1e1aa30ff4fa37564fb5cc8b06 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30c90ac015c5867489cc778cd7b3c4ce 3 | folderAsset: yes 4 | timeCreated: 1503637883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin.sln.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6db68a2ff414cb4eb25602c9f4c024b 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.aps -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.aps.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10cd19e44def55f46bf49baeff3ce3a2 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba6a780225bd24479e068fe27898417 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.h: -------------------------------------------------------------------------------- 1 | #ifdef UNITY_WIN 2 | #define EXPORT __declspec(dllexport) 3 | #else 4 | #define EXPORT 5 | #endif 6 | 7 | #define EXPORT __declspec(dllexport) 8 | 9 | #include "octree.h" 10 | 11 | extern "C" { 12 | EXPORT void CreateOctreeAndDualContour(int x, int y, int z, int octreeSize, float res, long* indexBufferLength, int **indexBufferData, long* vertexBufferLength, float **vertexBufferData); 13 | EXPORT void FastDualContourTest(); 14 | EXPORT void FastDualContour(int x, int y, int z, int meshScale, float targetPolygonPercent, int maxSimplifyIterations, float edgeFraction, float maxEdgeSize, float maxError, float minAngleCosine, float* debugVal, float* debugVal2, long* indexBufferLength, int **indexBufferData, long* vertexBufferLength, float **vertexBufferData, long* cellDataLength, float **cellData); 15 | } -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bdec3180db18bd4f937ac3f69c829c8 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.rc -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.rc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a04486b957a5c0646bd1f44aa5d9082b 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.vcxproj.filters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c15a631098ec22f4381eb31685d68526 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.vcxproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80fc5574107834a41876ae192aee9694 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/DualContouringPlugin.vcxproj.user.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90a7494e993909144aa43441c5e21f06 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/density.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79f66b3637694c946a65d4bc76ab6b4f 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/density.h: -------------------------------------------------------------------------------- 1 | #ifndef HAS_DENSITY_H_BEEN_INCLUDED 2 | #define HAS_DENSITY_H_BEEN_INCLUDED 3 | 4 | #include "glm\glm.hpp" 5 | 6 | float Density_Func(const glm::vec3& worldPosition); 7 | 8 | #endif // HAS_DENSITY_H_BEEN_INCLUDED -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/density.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5a2d5fa1a9812247b13f2c8b139082f 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/fast_dc.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab751167133c48f43b6a1e0dced0583b 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/fast_dc.h: -------------------------------------------------------------------------------- 1 | #ifndef HAS_DC_H_BEEN_INCLUDED 2 | #define HAS_DC_H_BEEN_INCLUDED 3 | 4 | #include "ng_mesh_simplify.h" 5 | 6 | struct SuperPrimitiveConfig 7 | { 8 | enum Type 9 | { 10 | Cube, 11 | Cylinder, 12 | Pill, 13 | Corridor, 14 | Torus, 15 | }; 16 | 17 | glm::vec4 s; 18 | glm::vec2 r; 19 | }; 20 | 21 | SuperPrimitiveConfig ConfigForShape(const SuperPrimitiveConfig::Type& type); 22 | MeshBuffer* GenerateMesh(int x, int y, int z, int cellSize, float& dVal, VertexData& cellData); 23 | 24 | #endif // HAS_DC_H_BEEN_INCLUDED -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/fast_dc.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47f619cf2d477794c9df890e342f1b30 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ca9f52fd93ee7b47bd5256d07813c88 3 | folderAsset: yes 4 | timeCreated: 1503637883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/CMakeLists.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 495d488d08e6d0c418fb423b3b0bfc48 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/common.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd12d2187a8b4a84c85a60c88af54ae8 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9426cc041663ad4aa0e538b19e7a130 3 | folderAsset: yes 4 | timeCreated: 1503637884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/_features.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7d5cf27264f8d3418fba5cc72e52ad4 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/_fixes.hpp 3 | 4 | #include 5 | 6 | //! Workaround for compatibility with other libraries 7 | #ifdef max 8 | #undef max 9 | #endif 10 | 11 | //! Workaround for compatibility with other libraries 12 | #ifdef min 13 | #undef min 14 | #endif 15 | 16 | //! Workaround for Android 17 | #ifdef isnan 18 | #undef isnan 19 | #endif 20 | 21 | //! Workaround for Android 22 | #ifdef isinf 23 | #undef isinf 24 | #endif 25 | 26 | //! Workaround for Chrone Native Client 27 | #ifdef log2 28 | #undef log2 29 | #endif 30 | 31 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/_fixes.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61e729f02d448c419fab8ad9a7570aa 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/_noise.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96b532f214a86994cad6597a7891e98b 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/_swizzle.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d14588430430a24cb4c885123fd91c2 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/_swizzle_func.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7398db162490374590d0db9a2d5934e 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/_vectorize.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a90041219c43eea41b234b06bb98bbcd 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "setup.hpp" 4 | #include 5 | #include 6 | 7 | namespace glm{ 8 | namespace detail 9 | { 10 | template ::is_iec559> 11 | struct compute_equal 12 | { 13 | GLM_FUNC_QUALIFIER static bool call(T a, T b) 14 | { 15 | return a == b; 16 | } 17 | }; 18 | 19 | template 20 | struct compute_equal 21 | { 22 | GLM_FUNC_QUALIFIER static bool call(T a, T b) 23 | { 24 | return std::memcmp(&a, &b, sizeof(T)) == 0; 25 | } 26 | }; 27 | }//namespace detail 28 | }//namespace glm 29 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/compute_vector_relational.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6302a8f794817bf4ab10855d312c6eb1 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/dummy.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44b9f614609fa504aaf750b80963b1cc 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_common.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b45e6988df64464c8707e93487e8a6b 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_common_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae65d0d30db008e4d93971e18429e306 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_exponential.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2789c588da5f7da4cba01ba7eaa48faa 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/func_exponential_simd.inl 3 | 4 | #include "../simd/exponential.h" 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | namespace glm{ 9 | namespace detail 10 | { 11 | template 12 | struct compute_sqrt<4, float, Q, true> 13 | { 14 | GLM_FUNC_QUALIFIER static vec<4, float, Q> call(vec<4, float, Q> const& v) 15 | { 16 | vec<4, float, Q> Result; 17 | Result.data = _mm_sqrt_ps(v.data); 18 | return Result; 19 | } 20 | }; 21 | 22 | template<> 23 | struct compute_sqrt<4, float, aligned_lowp, true> 24 | { 25 | GLM_FUNC_QUALIFIER static vec<4, float, aligned_lowp> call(vec<4, float, aligned_lowp> const& v) 26 | { 27 | vec<4, float, aligned_lowp> Result; 28 | Result.data = glm_vec4_sqrt_lowp(v.data); 29 | return Result; 30 | } 31 | }; 32 | }//namespace detail 33 | }//namespace glm 34 | 35 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 36 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_exponential_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 402d45ece1ffbd94fa84f085fd7c6ca2 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_geometric.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71fc6d08618449a4fabadc5f31d82249 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_geometric_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9323235f3c5fdf4db32751e4fb7500c 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_integer.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 685bddca29db68c4d88f45832fad74f8 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_integer_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7b25aead51cbd64e949ae15b4f08671 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_matrix.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 769d83726b282fa4499bba55f9776e13 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_matrix_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9cc8d0de3ba0554bac49b555145df3d 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_packing.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ba102e13133beb4f9a32ecdf592c2ff 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/func_packing_simd.inl 3 | 4 | namespace glm{ 5 | namespace detail 6 | { 7 | 8 | }//namespace detail 9 | }//namespace glm 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_packing_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 392c10563dc797b4b9f9c8eaed252bfc 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_trigonometric.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d962189db9cb614b858e029e1262b52 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_trigonometric_simd.inl -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_trigonometric_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fef5834c6d49074b8d02a5acbba36e1 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_vector_relational.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 522d27842eb40024291043140de0eb23 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/func_vector_relational_simd.inl 3 | 4 | namespace glm{ 5 | namespace detail 6 | { 7 | 8 | }//namespace detail 9 | }//namespace glm 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/func_vector_relational_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4ebb19aaca13144f8b0444c251df1ef 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/glm.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5433dcf3acb529744b9d4416c611bcdf 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/qualifier.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c0e77fdce7215e4fa0e23cddaa26658 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/setup.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47b3fc424956ad945a17108abd0df262 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_float.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f47ffb91f9b67b640959e9390bd8022e 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_gentype.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91b4c2a9f7bc82d44ba447a91080c5bb 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_gentype.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3db73eaaef064834cb483f963bed96a7 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_half.hpp 3 | 4 | #pragma once 5 | 6 | #include "setup.hpp" 7 | 8 | namespace glm{ 9 | namespace detail 10 | { 11 | typedef short hdata; 12 | 13 | GLM_FUNC_DECL float toFloat32(hdata value); 14 | GLM_FUNC_DECL hdata toFloat16(float const& value); 15 | 16 | }//namespace detail 17 | }//namespace glm 18 | 19 | #include "type_half.inl" 20 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_half.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1341c31ecaac504f9482fb6edda0360 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_half.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de3fe50f4f1fa1f44b67b1f76dc40ecc 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_int.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6ad6cebc8fc51a4995c2f9038aab59a 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce10d8e7a678d184f8f4a491c804ab3e 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_mat.inl 3 | 4 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f5ac46017a58374db47d7841bff733a 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat2x2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb08aab4cb680bc40ae23063f8e24d6f 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat2x2.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cd08e888dbab2541a2439505abb12e5 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat2x3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8885b42ddbc222741a5c56d84032e4df 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat2x3.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2bbff8824ba2904395b8f019b5e360c 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat2x4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af407f0042fdcb6408d13ee3f66eb3ea 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat2x4.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b75facd349ee8d498ff5362b6c2e6b7 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat3x2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f22a5ad693905ed409d0da078a266bdd 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat3x2.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20050ff83adc508468db8f515e661f7e 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat3x3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc993bfd69f7ffb47a845ea0eac0db14 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat3x3.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28865ae9a4ce441469a94a3fe458b4e6 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat3x4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 658d2d8e8e93efa4ebe8fef6ace194bb 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat3x4.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41ac06c9fd2b46d419c45c2d54d3b065 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0221003ab52df904c8c2aca80d8f6650 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x2.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 656420b0a0b65ef49aaeaf20652b8735 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdfc417276e882f4d85bf011da88b498 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x3.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bddca02e18e6944d9876cd587483537 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31054fae1cd0f844bb3da86f3ce74dc2 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x4.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab0f5788a2a1c0a47a91c059f16fe487 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_mat4x4_sse2.inl 3 | 4 | namespace glm 5 | { 6 | 7 | }//namespace glm 8 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_mat4x4_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1efe0da4a9ded08448aa935bcf106c3e 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4fe0d5e26875424a8b0c6c838029e39 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_vec.inl 3 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be1c25f4c64519d49ba0f32723761ac3 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec1.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82aba0f027576d04698c580fc0e489dd 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec1.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8decc721308b63c4e971fa246381ff7a 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d73d127c55edb499115573fe76bfae 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec2.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b2fbfe1f3db2504e9481cc2cb20a7bd 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75d9690171a5779408c9803abe547e82 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec3.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4c85a0c1d378b94e8c935e3667541a4 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d446ced4d93593a4e9f5d1a4dd40dd4e 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec4.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78a2da848b64eb84aafc5c619317473d 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/detail/type_vec4_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4117f6661bb36c4ab0c1d85de72e3b1 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/exponential.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406cdfe655895d74b8a99441d8c001d9 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01db595dd1aadb243bbb549301ff9f64 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e033afecaeeff974fae2325470f49324 3 | folderAsset: yes 4 | timeCreated: 1503637884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext/vec1.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1360a546a3a40e140bce82b8110a46cb 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext/vec1.inl -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext/vec1.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce11002dfdf9a73408500642d6e6c8f1 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext/vector_relational.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51165f376caf55b42b4843bdc149bf02 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/ext/vector_relational.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06810a77bb6745d44b7d52b9e64e321a 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/fwd.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af8d6bda60265644b9ee72c629b0dd44 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/geometric.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9baca844af7e9804eaff8be701281438 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/glm.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe2eecea135d55847a93fd0cf27743fa 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d304ee836f1e9b64d93f932b5cb4f2d0 3 | folderAsset: yes 4 | timeCreated: 1503637884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/bitfield.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff3e1dce812ce1048ba9955b0df36800 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/bitfield.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 547122c86e10d5b4f8f06d70994e9e7c 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/color_space.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb67c6e0042d14447b103987eef863d7 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/color_space.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 162f244e272b2eb4b8ac683d90a09338 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/constants.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17c6cf9bd82a64344b4619f8ccbaae24 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/constants.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 154a03e6599695948aa9a773e394f5c3 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/epsilon.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a8dc9a0e5e52ee47aa68afab9b74a05 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/epsilon.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfc3229302004fb4fbd7f4f0f8c66842 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/integer.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c731fdb2db585884695afc1896bf7ad5 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/integer.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8958bb7cc25b0d34998702d893866503 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/matrix_access.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97e6994f5c3962d49a70eee95d5d9843 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/matrix_access.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 177f99269f93c614eae7dfb40910ca0e 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/matrix_integer.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3048f6e978f6a204b98ad62441a8ab26 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/matrix_inverse.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca72edb07c2bf7f46902da5c33d82513 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/matrix_inverse.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0efa154988c204941a4e22f2f7354ec4 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/matrix_transform.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44a05d1a747ee064d8d5cbc96584ba28 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/matrix_transform.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c59a569e13919e498b041acab2eb88a 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/noise.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c6de2b33659ae441903d4e02bdc6082 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/noise.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e548d80757d04b94d81aaec40b91670b 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/packing.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3c8ad14c020afd40a1a409f16d2a0c8 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/packing.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b434e54069245f4b8be956f365c0b6d 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/quaternion.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd0e8a1a8cd65074bbd73acf6187f7a4 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/quaternion.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42ecc13b86a96814f89087755681da99 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/quaternion_simd.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90e4bb63622b8f7489ecf005fa8a84cf 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/random.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 63a96ccb4d81ad94a9b0e2fa6b4f89ea 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/random.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44743a8792f443744b72371dab0dc9fe 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/reciprocal.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d8d38e0dd2e4274fb8735b70a9aeb30 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/reciprocal.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad8aed6d51e67e54c81c41eaac266fbb 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/round.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c218d267f167bd4db6535e34e2f4185 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/round.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c42a6f5245c10564cb9e3f566fe800fe 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/type_aligned.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a0ab4684282d3e44ad3d88625b56c2b 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/type_precision.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 419373b83ab86444eb8d14a0b4ded94a 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_swizzle 2 | /// @file glm/gtc/swizzle.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/type_precision.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08c0780752de0f6478f354f8fd1815d2 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/type_ptr.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f9278d1b439f3c4db461206ef9f2111 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/type_ptr.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66d53137a089f984787d26b8a5919571 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/ulp.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0852522088b40f449b5ad9e22e4485a5 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/ulp.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84c32668322fcf946992ccaa9ecf5fde 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/vec1.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f59bf14032f74340b432e3fbc050ffe 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_vec1 2 | /// @file glm/gtc/vec1.inl 3 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtc/vec1.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d756d597e3f6db24dbbed38afc135fb6 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a5cbbd7ff92b3e4980927b2b69469fe 3 | folderAsset: yes 4 | timeCreated: 1503637883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/associated_min_max.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79d6dcc15344d8f41b64be2eaccfa046 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/associated_min_max.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f70c9e63455d78498d9d305f3cdeef4 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/bit.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea3d4975ec349f84e9a855ce7fcf8444 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/bit.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94ca8f30842817541923117ec19f02f6 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/closest_point.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a37c68e0257f764597062636c870043 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/closest_point.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e089f26c67c307347bca515ad762d545 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/color_encoding.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbd44638d086122459439aabb42192e3 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/color_encoding.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 219ee4edca76cef49894f3c1b16914d0 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/color_space.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 013e309af71df934f8ec00b2d528f44d 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/color_space.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0086b222243493b41ad8414512497683 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/color_space_YCoCg.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1be287f7e71868847aaf9b5312b8159b 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/color_space_YCoCg.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a88d44f49217db34d99cd87cd7e00f41 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/common.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9d14d2260d10b43a05203177177326 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/common.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d8bb9ab4f033904e8bdd4db6d77bc1d 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/compatibility.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 785009f5af6e2eb4aa0163c5619faecf 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/compatibility.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64d6161f1f9e244428327d65bdddf69e 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/component_wise.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edc7cbfe3116c5c4d9288beaedebc299 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/component_wise.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ea58a728931ba14692406154a01048b 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/dual_quaternion.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb00ca31a6f007e43b9e11bc0256fd1e 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/dual_quaternion.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 308d19b61f40a1c428621afa262302b6 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/euler_angles.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fd7f5f840f33b64eab592d9ac2486d1 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/euler_angles.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 510a3c5764b174443a525f8ad928a197 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/extend.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68fe059bd89bdcd429324e5816d8ce14 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/extend.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02c93e433fbcbf44187a71bd496bfeaf 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/extended_min_max.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 984d7fb06f3819a43811548845ebe404 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/extended_min_max.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 074b0b1c76563a94084e841bda9bd6d2 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/exterior_product.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20bc1b735824bda4a872c8b48bfc9166 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/func_geometric.inl 3 | 4 | #include 5 | 6 | namespace glm { 7 | namespace detail 8 | { 9 | template 10 | struct compute_cross_vec2 11 | { 12 | GLM_FUNC_QUALIFIER static T call(vec<2, T, Q> const& v, vec<2, T, Q> const& u) 13 | { 14 | GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'cross' accepts only floating-point inputs"); 15 | 16 | return v.x * u.y - u.x * v.y; 17 | } 18 | }; 19 | }//namespace detail 20 | 21 | template 22 | GLM_FUNC_QUALIFIER T cross(vec<2, T, Q> const& x, vec<2, T, Q> const& y) 23 | { 24 | return detail::compute_cross_vec2::value>::call(x, y); 25 | } 26 | }//namespace glm 27 | 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/exterior_product.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 548aa87825393894fae76604ed871879 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/fast_exponential.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67cf9a765c30a4c4fadf61c4ae0046b0 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/fast_exponential.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbdf78ddaa4037b419e7813bb92fd3b7 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/fast_square_root.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1353c6f0bae4a24c854bb7b76089cd0 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/fast_square_root.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dfc23a231bad1b4daf623bb7d50f83e 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/fast_trigonometry.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1804d6a9e1d3df64a947bf66159057c8 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/fast_trigonometry.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e213969e76dec148a213356ddcefc18 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_float_normalize 2 | /// @file glm/gtx/float_normalize.inl 3 | 4 | #include 5 | 6 | namespace glm 7 | { 8 | template 9 | GLM_FUNC_QUALIFIER vec floatNormalize(vec const& v) 10 | { 11 | return vec(v) / static_cast(std::numeric_limits::max()); 12 | } 13 | 14 | }//namespace glm 15 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/float_notmalize.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c7b474cadfb4314898718c590fd6b95 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/functions.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee482b9a94d34543b5eae7ad0a31649 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/functions.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_functions 2 | /// @file glm/gtx/functions.inl 3 | 4 | #include "../exponential.hpp" 5 | 6 | namespace glm 7 | { 8 | template 9 | GLM_FUNC_QUALIFIER T gauss 10 | ( 11 | T x, 12 | T ExpectedValue, 13 | T StandardDeviation 14 | ) 15 | { 16 | return exp(-((x - ExpectedValue) * (x - ExpectedValue)) / (static_cast(2) * StandardDeviation * StandardDeviation)) / (StandardDeviation * sqrt(static_cast(6.28318530717958647692528676655900576))); 17 | } 18 | 19 | template 20 | GLM_FUNC_QUALIFIER T gauss 21 | ( 22 | vec<2, T, Q> const& Coord, 23 | vec<2, T, Q> const& ExpectedValue, 24 | vec<2, T, Q> const& StandardDeviation 25 | ) 26 | { 27 | vec<2, T, Q> const Squared = ((Coord - ExpectedValue) * (Coord - ExpectedValue)) / (static_cast(2) * StandardDeviation * StandardDeviation); 28 | return exp(-(Squared.x + Squared.y)); 29 | } 30 | }//namespace glm 31 | 32 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/functions.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65b373948a6ed984b8bfcf656ea22b2d 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/gradient_paint.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ad4863c3ecf497429cef39f7b7ef6dd 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/gradient_paint.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8df975d0f938d2c45991efaff4c49744 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/handed_coordinate_space.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1f1da7e4e05a7c4b9cd66fb67e666f6 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_handed_coordinate_space 2 | /// @file glm/gtx/handed_coordinate_space.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER bool rightHanded 8 | ( 9 | vec<3, T, Q> const& tangent, 10 | vec<3, T, Q> const& binormal, 11 | vec<3, T, Q> const& normal 12 | ) 13 | { 14 | return dot(cross(normal, tangent), binormal) > T(0); 15 | } 16 | 17 | template 18 | GLM_FUNC_QUALIFIER bool leftHanded 19 | ( 20 | vec<3, T, Q> const& tangent, 21 | vec<3, T, Q> const& binormal, 22 | vec<3, T, Q> const& normal 23 | ) 24 | { 25 | return dot(cross(normal, tangent), binormal) < T(0); 26 | } 27 | }//namespace glm 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/handed_coordinate_space.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e17a95331507824990ee54a19fbc370 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/hash.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e09667ad9d320540a1c748f81d7e6fe 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/hash.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cad8ae646fb5f12469a23813f3071f9a 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/integer.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61c9048abbcb9c4aa7f61f1fe94637f 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/integer.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d777feae8826e8a4b9da97a104d78a08 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/intersect.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22090556be259764687855315afe4927 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/intersect.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad001ff9cdf290441b36bb13afc396ac 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/io.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 287c8b621dd10bb4994ef9342e596522 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/io.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4788412fa3352a49a3d991041a4e88b 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/log_base.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52ec0787f009eab4a947507964e311e4 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_log_base 2 | /// @file glm/gtx/log_base.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType log(genType const& x, genType const& base) 8 | { 9 | assert(!detail::compute_equal::call(x, static_cast(0))); 10 | return glm::log(x) / glm::log(base); 11 | } 12 | 13 | template 14 | GLM_FUNC_QUALIFIER vec log(vec const& x, vec const& base) 15 | { 16 | return glm::log(x) / glm::log(base); 17 | } 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/log_base.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8abce2f7b0bac534a933d205bc44765e 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_cross_product.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85abde83907d9214db42ae83bdb3c53c 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_matrix_cross_product 2 | /// @file glm/gtx/matrix_cross_product.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER mat<3, 3, T, Q> matrixCross3 8 | ( 9 | vec<3, T, Q> const& x 10 | ) 11 | { 12 | mat<3, 3, T, Q> Result(T(0)); 13 | Result[0][1] = x.z; 14 | Result[1][0] = -x.z; 15 | Result[0][2] = -x.y; 16 | Result[2][0] = x.y; 17 | Result[1][2] = x.x; 18 | Result[2][1] = -x.x; 19 | return Result; 20 | } 21 | 22 | template 23 | GLM_FUNC_QUALIFIER mat<4, 4, T, Q> matrixCross4 24 | ( 25 | vec<3, T, Q> const& x 26 | ) 27 | { 28 | mat<4, 4, T, Q> Result(T(0)); 29 | Result[0][1] = x.z; 30 | Result[1][0] = -x.z; 31 | Result[0][2] = -x.y; 32 | Result[2][0] = x.y; 33 | Result[1][2] = x.x; 34 | Result[2][1] = -x.x; 35 | return Result; 36 | } 37 | 38 | }//namespace glm 39 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_cross_product.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c4afe00109929b418bfa60cbc649556 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_decompose.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 991ea140956da64479308d7ceebbb5b9 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_decompose.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 794f7e5bbd9159442b9d185bd2cb46d6 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_factorisation.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c8f9076215092c4191f892397df7ec1 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_factorisation.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b61d7773d3f19804ca45bb6a267be36d 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_interpolation.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a65c3d6d8925843459b2a9d1acb3cb0c 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_interpolation.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfd4b2cfca4e387488a44f02f982282c 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_major_storage.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b81c77531782964ba0ad1c50ae6972d 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_major_storage.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54d8a818e8bd6ec409301a3eabb7ec5f 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_operation.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74da082097c7f954fbc78bee17f7b22a 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_operation.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5ac5b73b11103a4a86e144e6a5f2a08 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_query.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ff27b811d62c154686d3b1586c3b1b8 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_query.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76db8a854e4433244a68ee8c1e1aca9e 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_transform_2d.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3bd344b6dbc27e241b8c55907aa1ffb8 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/matrix_transform_2d.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b39441944b77344e836a8f240fcfe49 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/mixed_product.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad6e4e7198801ab4bb04edd92e088067 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_mixed_product 2 | /// @file glm/gtx/mixed_product.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER T mixedProduct 8 | ( 9 | vec<3, T, Q> const& v1, 10 | vec<3, T, Q> const& v2, 11 | vec<3, T, Q> const& v3 12 | ) 13 | { 14 | return dot(cross(v1, v2), v3); 15 | } 16 | }//namespace glm 17 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/mixed_product.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6823b0c94f1647f4896a36cfafb18147 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/norm.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4528440b69979b84581e1982eafc270e 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/norm.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cc2b02db052fee4580fbc9b75bf4ed1 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/normal.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44770a7257b05c24b8438b24208abe6a 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/normal.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_normal 2 | /// @file glm/gtx/normal.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER vec<3, T, Q> triangleNormal 8 | ( 9 | vec<3, T, Q> const& p1, 10 | vec<3, T, Q> const& p2, 11 | vec<3, T, Q> const& p3 12 | ) 13 | { 14 | return normalize(cross(p1 - p2, p1 - p3)); 15 | } 16 | }//namespace glm 17 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/normal.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04e2ac1cf4a51c74ab81e54bcb4509a4 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/normalize_dot.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 492893da3b42f83449c99d276b55a48d 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_normalize_dot 2 | /// @file glm/gtx/normalize_dot.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER T normalizeDot(vec const& x, vec const& y) 8 | { 9 | return glm::dot(x, y) * glm::inversesqrt(glm::dot(x, x) * glm::dot(y, y)); 10 | } 11 | 12 | template 13 | GLM_FUNC_QUALIFIER T fastNormalizeDot(vec const& x, vec const& y) 14 | { 15 | return glm::dot(x, y) * glm::fastInverseSqrt(glm::dot(x, x) * glm::dot(y, y)); 16 | } 17 | }//namespace glm 18 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/normalize_dot.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6df78096b851364ba4c7a9d8a5b1941 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/number_precision.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 871b05901cf145a45b33b165a3087abe 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | /// @file glm/gtx/number_precision.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/number_precision.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c1885f034d8cb449844cc6b23a43dd1 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/optimum_pow.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caeb959e771b67442b032bd4248993d3 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_optimum_pow 2 | /// @file glm/gtx/optimum_pow.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType pow2(genType const& x) 8 | { 9 | return x * x; 10 | } 11 | 12 | template 13 | GLM_FUNC_QUALIFIER genType pow3(genType const& x) 14 | { 15 | return x * x * x; 16 | } 17 | 18 | template 19 | GLM_FUNC_QUALIFIER genType pow4(genType const& x) 20 | { 21 | return (x * x) * (x * x); 22 | } 23 | }//namespace glm 24 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/optimum_pow.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5e1f97720f19324db112b3a11d4899a 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/orthonormalize.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9e577a3ce412e646a81e459e784425e 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_orthonormalize 2 | /// @file glm/gtx/orthonormalize.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER mat<3, 3, T, Q> orthonormalize(mat<3, 3, T, Q> const& m) 8 | { 9 | mat<3, 3, T, Q> r = m; 10 | 11 | r[0] = normalize(r[0]); 12 | 13 | T d0 = dot(r[0], r[1]); 14 | r[1] -= r[0] * d0; 15 | r[1] = normalize(r[1]); 16 | 17 | T d1 = dot(r[1], r[2]); 18 | d0 = dot(r[0], r[2]); 19 | r[2] -= r[0] * d0 + r[1] * d1; 20 | r[2] = normalize(r[2]); 21 | 22 | return r; 23 | } 24 | 25 | template 26 | GLM_FUNC_QUALIFIER vec<3, T, Q> orthonormalize(vec<3, T, Q> const& x, vec<3, T, Q> const& y) 27 | { 28 | return normalize(x - y * dot(y, x)); 29 | } 30 | }//namespace glm 31 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/orthonormalize.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e45633b664a42554cafac6950f8f7593 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/perpendicular.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d445e58eacee5444fba8d1e852d5da45 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_perpendicular 2 | /// @file glm/gtx/perpendicular.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType perp(genType const& x, genType const& Normal) 8 | { 9 | return x - proj(x, Normal); 10 | } 11 | }//namespace glm 12 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/perpendicular.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2ca83c316ae3d2499eccd63161c35d6 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/polar_coordinates.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd3edbb7f1a443341928bb3adefca990 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_polar_coordinates 2 | /// @file glm/gtx/polar_coordinates.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER vec<3, T, Q> polar 8 | ( 9 | vec<3, T, Q> const& euclidean 10 | ) 11 | { 12 | T const Length(length(euclidean)); 13 | vec<3, T, Q> const tmp(euclidean / Length); 14 | T const xz_dist(sqrt(tmp.x * tmp.x + tmp.z * tmp.z)); 15 | 16 | return vec<3, T, Q>( 17 | asin(tmp.y), // latitude 18 | atan(tmp.x, tmp.z), // longitude 19 | xz_dist); // xz distance 20 | } 21 | 22 | template 23 | GLM_FUNC_QUALIFIER vec<3, T, Q> euclidean 24 | ( 25 | vec<2, T, Q> const& polar 26 | ) 27 | { 28 | T const latitude(polar.x); 29 | T const longitude(polar.y); 30 | 31 | return vec<3, T, Q>( 32 | cos(latitude) * sin(longitude), 33 | sin(latitude), 34 | cos(latitude) * cos(longitude)); 35 | } 36 | 37 | }//namespace glm 38 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/polar_coordinates.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11067488d59ad904c881b8765b2f493c 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/projection.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fed66755228c8d345aa62bbe0acbdc16 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/projection.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_projection 2 | /// @file glm/gtx/projection.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType proj(genType const& x, genType const& Normal) 8 | { 9 | return glm::dot(x, Normal) / glm::dot(Normal, Normal) * Normal; 10 | } 11 | }//namespace glm 12 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/projection.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f4b49740dfff9247bc13a685927415e 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/quaternion.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9df8e172f3ad9a48971b6cbfd9676a7 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/quaternion.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b888b05f0745ba439e46d411ec9bd95 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/range.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11e23ec2954578f42aba3da492403fd2 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/raw_data.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c65625b760fa7543a8ac67780d3c81e 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | /// @file glm/gtx/raw_data.inl 3 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/raw_data.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f462d9c3d249944a8a710f93e3e8be0 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/rotate_normalized_axis.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cdd7aaf348674141a3674bf086c15f9 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/rotate_normalized_axis.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9715325efc108b243929313bcad8d5ba 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/rotate_vector.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c0f898891cdc22439669970ec38413d 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/rotate_vector.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85655e9d41f8e4f4498cc038644fdf38 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/scalar_multiplication.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c10645aabf0f23346a5581b7be705c10 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- 1 | /// @ref gtx_scalar_relational 2 | /// @file glm/gtx/scalar_relational.hpp 3 | /// 4 | /// @see core (dependence) 5 | /// 6 | /// @defgroup gtx_scalar_relational GLM_GTX_scalar_relational 7 | /// @ingroup gtx 8 | /// 9 | /// Include to use the features of this extension. 10 | /// 11 | /// Extend a position from a source to a position at a defined length. 12 | 13 | #pragma once 14 | 15 | // Dependency: 16 | #include "../glm.hpp" 17 | 18 | #ifndef GLM_ENABLE_EXPERIMENTAL 19 | # error "GLM: GLM_GTX_extend is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." 20 | #endif 21 | 22 | #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) 23 | # pragma message("GLM: GLM_GTX_extend extension included") 24 | #endif 25 | 26 | namespace glm 27 | { 28 | /// @addtogroup gtx_scalar_relational 29 | /// @{ 30 | 31 | 32 | 33 | /// @} 34 | }//namespace glm 35 | 36 | #include "scalar_relational.inl" 37 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/scalar_relational.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 502f4d675af27634e822bd82b675d4c0 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/scalar_relational.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d33702e3f51eb64bbfbfe42bb52f046 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/spline.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f06da1771491af4c84b6cd8817c8a8f 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/spline.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326bb6a8ddebade4cb33db3c8faf3a19 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/std_based_type.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9f14a4a07d842f459e75b61a930738a 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | /// @file glm/gtx/std_based_type.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/std_based_type.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42d69067b7ba3bb4ebb637ba5a77903d 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/string_cast.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2274b3aa9218f84080b7625cc242ca4 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/string_cast.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a76928c26d1e264f9b492739a4b73b0 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/transform.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b0a1da1e028a641885391e69eb23f2 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/transform.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_transform 2 | /// @file glm/gtx/transform.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER mat<4, 4, T, Q> translate(vec<3, T, Q> const& v) 8 | { 9 | return translate(mat<4, 4, T, Q>(static_cast(1)), v); 10 | } 11 | 12 | template 13 | GLM_FUNC_QUALIFIER mat<4, 4, T, Q> rotate(T angle, vec<3, T, Q> const& v) 14 | { 15 | return rotate(mat<4, 4, T, Q>(static_cast(1)), angle, v); 16 | } 17 | 18 | template 19 | GLM_FUNC_QUALIFIER mat<4, 4, T, Q> scale(vec<3, T, Q> const& v) 20 | { 21 | return scale(mat<4, 4, T, Q>(static_cast(1)), v); 22 | } 23 | 24 | }//namespace glm 25 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/transform.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91d156afbe38972478ef429ba27cffb8 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/transform2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92ae2444c1aaf88448b0dfbdea9125fd 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/transform2.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c8dc1684c4cd114d90152e6821771f4 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/type_aligned.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c605355d0122b8c48a147361f67b62e1 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | /// @file glm/gtc/type_aligned.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/type_aligned.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ddf8d4181ef2684ba6cb3db4a72432b 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/type_trait.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 516eeccd73f942549aff0b66facfaed1 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/type_trait.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53e05ba447ed60d4f8f51cf7768301d2 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/vec_swizzle.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e253318c30a61a4a816d44fda009e69 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/vector_angle.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73c286d895f26cb4584f8032be8f290f 3 | timeCreated: 1503637886 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/vector_angle.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59abfd0877e332c46ab1f7fec32f6b9a 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/vector_query.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f139e97d493bfe4caf29b6bb16f2fd0 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/vector_query.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 488f08edb863ebc4a86ee09e3034e628 3 | timeCreated: 1503637885 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/wrap.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9252b281c0eeb442b1864680e8bf4c9 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/gtx/wrap.inl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c484b681ffea7994dae0d5ac74aed76b 3 | timeCreated: 1503637887 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/integer.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 630443e0b8a1cfc4db296a091c046f84 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat2x2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c2f99ad25c53e649ac66aed33fe8e94 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat2x3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a485a2f5b7c5a484e9da09380cc0af80 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat2x4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 291b9b75166098647be97219daeb399e 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat3x2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1f1a2a7c19dc63409feca4ae3bc3159 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat3x3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b2518c34d226bc409d79c9d5ce913b3 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat3x4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1aa4592949dea34eb368419cd61200c 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat4x2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6df8bb0f135e4240b5ae47e03e618e4 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat4x3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28b25a122df9396418d5de5b95b5dc9e 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/mat4x4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc35b32d55e8a5548adf38ffd0827797 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/matrix.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b58b9fa6042b64e4eb8196159d640a1b 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/packing.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1eff8500211516045b95725fc0d5b4c2 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8df24822fdd5b4c4f9bfb2a948f58c5d 3 | folderAsset: yes 4 | timeCreated: 1503637883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/common.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de96525b7babfc6428809684502616ff 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/exponential.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/experimental.h 3 | 4 | #pragma once 5 | 6 | #include "platform.h" 7 | 8 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | 10 | GLM_FUNC_QUALIFIER glm_vec4 glm_vec1_sqrt_lowp(glm_vec4 x) 11 | { 12 | return _mm_mul_ss(_mm_rsqrt_ss(x), x); 13 | } 14 | 15 | GLM_FUNC_QUALIFIER glm_vec4 glm_vec4_sqrt_lowp(glm_vec4 x) 16 | { 17 | return _mm_mul_ps(_mm_rsqrt_ps(x), x); 18 | } 19 | 20 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 21 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/exponential.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82b4b1374945a1b42b17c506cc212abc 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/geometric.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b43887b9b5daf564bb581d7bf5ecce03 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/integer.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2c1b5931f4d5524ca9c24023c50d9f5 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/matrix.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54f5b5021994b1543a0789da867e813d 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/packing.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/packing.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/packing.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a7ddbc624bc0f64bb032454f02e06ca 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/platform.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f35500a46ca3e346920bb20374e73fb 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/trigonometric.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/trigonometric.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8dfe8808282df09499dad9055fa5fde4 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/vector_relational.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/simd/vector_relational.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 832148c0b1d7b2e4991953444217840f 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/trigonometric.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de87cd69fbbd311479bfea19ec551ec9 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/vec2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec2.hpp 3 | 4 | #include "detail/setup.hpp" 5 | 6 | #pragma once 7 | 8 | #include "detail/type_vec2.hpp" 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/vec2.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e80a7e9cefde1e4bbb1faac6af77342 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/vec3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec3.hpp 3 | 4 | #include "detail/setup.hpp" 5 | 6 | #pragma once 7 | 8 | #include "detail/type_vec3.hpp" 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/vec3.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f72f52006bd4e8141988d3905cbab70d 3 | timeCreated: 1503637884 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/vec4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec4.hpp 3 | 4 | #include "detail/setup.hpp" 5 | 6 | #pragma once 7 | 8 | #include "detail/type_vec4.hpp" 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/vec4.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28d8de9420dfb39439e5f3365dde452d 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/glm/vector_relational.hpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64949d33f6069034280e6410933d9f34 3 | timeCreated: 1503637883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/mesh.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c22dba99faa64f4681900ecb24f8c7b 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/mesh.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba297e7c2e1b1f4419d12480ae2abd2a 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/ng_mesh_simplify.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3b66c3397c2d564499728de8ae66ec3 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/ng_mesh_simplify.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4b94e265c4e0c840916934ed29e1bf9 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/octree.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b75586a8b5ba604993c007d0c032d03 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/octree.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f20eefbf35864de4ca49ed906b80d3bd 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/qef.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a520aa294185604da906ee233489c44 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/qef.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da1c1739fcdec494fb80e54ae1b6e6fd 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/qef_simd.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fceef46b788dc1f4892a5e9c096ce813 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by DualContouringPlugin.rc 4 | 5 | // Next default values for new objects 6 | // 7 | #ifdef APSTUDIO_INVOKED 8 | #ifndef APSTUDIO_READONLY_SYMBOLS 9 | #define _APS_NEXT_RESOURCE_VALUE 101 10 | #define _APS_NEXT_COMMAND_VALUE 40001 11 | #define _APS_NEXT_CONTROL_VALUE 1001 12 | #define _APS_NEXT_SYMED_VALUE 101 13 | #endif 14 | #endif 15 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/resource.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a54094d6e30254349ab0a74ae2dfffa1 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/svd.cpp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19bb9708a122bc44b9e98cd7d5d61cff 3 | timeCreated: 1503637888 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/svd.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db255d65f05b385459fec1a3fba479a4 3 | timeCreated: 1503637889 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | data: 13 | first: 14 | Any: 15 | second: 16 | enabled: 1 17 | settings: {} 18 | data: 19 | first: 20 | Editor: Editor 21 | second: 22 | enabled: 0 23 | settings: 24 | DefaultValueInitialized: true 25 | userData: 26 | assetBundleName: 27 | assetBundleVariant: 28 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b290be61a663345429c16d918c264aa8 3 | folderAsset: yes 4 | timeCreated: 1503637883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 629220c615dbb34449612bb11fe73e9f 3 | folderAsset: yes 4 | timeCreated: 1503637883 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/DualContouringPlugin.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Release|x64|C:\Users\Dylan\Documents\github\UnityDualContouringPlugin\C++Source\Testbed\DCTest\DCTest\DCTest\DualContouringPlugin\| 3 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/DualContouringPlugin.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/DualContouringPlugin.write.1u.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualCont.218501E5.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualContouringPlugin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualContouringPlugin.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualContouringPlugin.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/DualContouringPlugin.res -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/density.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/density.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/dummy.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/dummy.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/fast_dc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/fast_dc.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/glm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/glm.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/mesh.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/ng_mesh_simplify.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/ng_mesh_simplify.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/octree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/octree.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/qef.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/qef.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/svd.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/svd.obj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/DualContouringPlugin/x64/Release/vc140.pdb -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.exp -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.iobj -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.ipdb -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.lib -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/DCTest/DualContouringPlugin/x64/Release/DualContouringPlugin.pdb -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // DCTest.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | // 5 | 6 | #pragma once 7 | 8 | #include "targetver.h" 9 | 10 | #include 11 | #include 12 | 13 | 14 | 15 | // TODO: reference additional headers your program requires here 16 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/DCTest/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // Including SDKDDKVer.h defines the highest available Windows platform. 4 | 5 | // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and 6 | // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. 7 | 8 | #include 9 | -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/Debug/DCTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/Debug/DCTest.exe -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/Debug/DCTest.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/Debug/DCTest.exp -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/Debug/DCTest.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/Debug/DCTest.ilk -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/Debug/DCTest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/Debug/DCTest.lib -------------------------------------------------------------------------------- /C++Source/Testbed/DCTest/DCTest/Debug/DCTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMeville/Unity-Fast-Dual-Contouring/d910cc67659beb7d9af79932a61f6ad5f0394e4f/C++Source/Testbed/DCTest/DCTest/Debug/DCTest.pdb -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_EnablePCM: 1 18 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 19 | m_AutoSimulation: 1 20 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/DDC.unity 10 | guid: 9561a6822e92dd04dbfbe3729a62a30b 11 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_DefaultBehaviorMode: 0 10 | m_SpritePackerMode: 0 11 | m_SpritePackerPaddingPower: 1 12 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 13 | m_ProjectGenerationRootNamespace: 14 | m_UserGeneratedProjectSuffix: 15 | m_CollabEditorSettings: 16 | inProgressEnabled: 1 17 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.1.0f2 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_TestMode: 0 8 | m_TestEventUrl: 9 | m_TestConfigUrl: 10 | m_TestInitMode: 0 11 | CrashReportingSettings: 12 | m_EventUrl: https://perf-events.cloud.unity3d.com/api/events/crashes 13 | m_Enabled: 0 14 | m_CaptureEditorExceptions: 1 15 | UnityPurchasingSettings: 16 | m_Enabled: 0 17 | m_TestMode: 0 18 | UnityAnalyticsSettings: 19 | m_Enabled: 0 20 | m_InitializeOnStartup: 1 21 | m_TestMode: 0 22 | m_TestEventUrl: 23 | m_TestConfigUrl: 24 | UnityAdsSettings: 25 | m_Enabled: 0 26 | m_InitializeOnStartup: 1 27 | m_TestMode: 0 28 | m_EnabledPlatforms: 4294967295 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | --------------------------------------------------------------------------------