├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── amenemhat │ │ ├── amenemhat.jpg │ │ ├── amenemhat.mtl │ │ └── amenemhat.obj │ └── shaders │ │ ├── modelTextured.fsh │ │ └── modelTextured.vsh │ ├── externals │ ├── assimp-3.0 │ │ ├── LICENSE │ │ ├── buildForAndroid.sh │ │ ├── include │ │ │ └── assimp │ │ │ │ ├── .editorconfig │ │ │ │ ├── Compiler │ │ │ │ ├── poppack1.h │ │ │ │ ├── pstdint.h │ │ │ │ └── pushpack1.h │ │ │ │ ├── DefaultLogger.hpp │ │ │ │ ├── Exporter.hpp │ │ │ │ ├── IOStream.hpp │ │ │ │ ├── IOSystem.hpp │ │ │ │ ├── Importer.hpp │ │ │ │ ├── LogStream.hpp │ │ │ │ ├── Logger.hpp │ │ │ │ ├── NullLogger.hpp │ │ │ │ ├── ProgressHandler.hpp │ │ │ │ ├── ai_assert.h │ │ │ │ ├── anim.h │ │ │ │ ├── camera.h │ │ │ │ ├── cexport.h │ │ │ │ ├── cfileio.h │ │ │ │ ├── cimport.h │ │ │ │ ├── color4.h │ │ │ │ ├── color4.inl │ │ │ │ ├── config.h │ │ │ │ ├── defs.h │ │ │ │ ├── importerdesc.h │ │ │ │ ├── light.h │ │ │ │ ├── material.h │ │ │ │ ├── material.inl │ │ │ │ ├── matrix3x3.h │ │ │ │ ├── matrix3x3.inl │ │ │ │ ├── matrix4x4.h │ │ │ │ ├── matrix4x4.inl │ │ │ │ ├── mesh.h │ │ │ │ ├── metadata.h │ │ │ │ ├── port │ │ │ │ └── AndroidJNI │ │ │ │ │ └── AndroidJNIIOSystem.h │ │ │ │ ├── postprocess.h │ │ │ │ ├── quaternion.h │ │ │ │ ├── quaternion.inl │ │ │ │ ├── scene.h │ │ │ │ ├── texture.h │ │ │ │ ├── types.h │ │ │ │ ├── vector2.h │ │ │ │ ├── vector2.inl │ │ │ │ ├── vector3.h │ │ │ │ ├── vector3.inl │ │ │ │ └── version.h │ │ └── libs │ │ │ └── armeabi-v7a │ │ │ └── libassimp.so │ ├── glm-0.9.7.5 │ │ ├── .gitignore │ │ ├── copying.txt │ │ ├── glm │ │ │ ├── CMakeLists.txt │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ │ ├── _features.hpp │ │ │ │ ├── _fixes.hpp │ │ │ │ ├── _noise.hpp │ │ │ │ ├── _swizzle.hpp │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ ├── _vectorize.hpp │ │ │ │ ├── dummy.cpp │ │ │ │ ├── func_common.hpp │ │ │ │ ├── func_common.inl │ │ │ │ ├── func_exponential.hpp │ │ │ │ ├── func_exponential.inl │ │ │ │ ├── func_geometric.hpp │ │ │ │ ├── func_geometric.inl │ │ │ │ ├── func_integer.hpp │ │ │ │ ├── func_integer.inl │ │ │ │ ├── func_matrix.hpp │ │ │ │ ├── func_matrix.inl │ │ │ │ ├── func_packing.hpp │ │ │ │ ├── func_packing.inl │ │ │ │ ├── func_trigonometric.hpp │ │ │ │ ├── func_trigonometric.inl │ │ │ │ ├── func_vector_relational.hpp │ │ │ │ ├── func_vector_relational.inl │ │ │ │ ├── glm.cpp │ │ │ │ ├── intrinsic_common.hpp │ │ │ │ ├── intrinsic_common.inl │ │ │ │ ├── intrinsic_exponential.hpp │ │ │ │ ├── intrinsic_exponential.inl │ │ │ │ ├── intrinsic_geometric.hpp │ │ │ │ ├── intrinsic_geometric.inl │ │ │ │ ├── intrinsic_integer.hpp │ │ │ │ ├── intrinsic_integer.inl │ │ │ │ ├── intrinsic_matrix.hpp │ │ │ │ ├── intrinsic_matrix.inl │ │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ │ ├── intrinsic_trigonometric.inl │ │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ │ ├── intrinsic_vector_relational.inl │ │ │ │ ├── precision.hpp │ │ │ │ ├── setup.hpp │ │ │ │ ├── type_float.hpp │ │ │ │ ├── type_gentype.hpp │ │ │ │ ├── type_gentype.inl │ │ │ │ ├── type_half.hpp │ │ │ │ ├── type_half.inl │ │ │ │ ├── type_int.hpp │ │ │ │ ├── type_mat.hpp │ │ │ │ ├── type_mat.inl │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ ├── type_mat2x2.inl │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ ├── type_mat2x3.inl │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ ├── type_mat2x4.inl │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ ├── type_mat3x2.inl │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ ├── type_mat3x3.inl │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ ├── type_mat3x4.inl │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ ├── type_mat4x2.inl │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ ├── type_mat4x3.inl │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ ├── type_mat4x4.inl │ │ │ │ ├── type_vec.hpp │ │ │ │ ├── type_vec.inl │ │ │ │ ├── type_vec1.hpp │ │ │ │ ├── type_vec1.inl │ │ │ │ ├── type_vec2.hpp │ │ │ │ ├── type_vec2.inl │ │ │ │ ├── type_vec3.hpp │ │ │ │ ├── type_vec3.inl │ │ │ │ ├── type_vec4.hpp │ │ │ │ ├── type_vec4.inl │ │ │ │ ├── type_vec4_avx.inl │ │ │ │ ├── type_vec4_avx2.inl │ │ │ │ └── type_vec4_sse2.inl │ │ │ ├── exponential.hpp │ │ │ ├── ext.hpp │ │ │ ├── fwd.hpp │ │ │ ├── geometric.hpp │ │ │ ├── glm.hpp │ │ │ ├── gtc │ │ │ │ ├── bitfield.hpp │ │ │ │ ├── bitfield.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── constants.hpp │ │ │ │ ├── constants.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── epsilon.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── matrix_access.hpp │ │ │ │ ├── matrix_access.inl │ │ │ │ ├── matrix_integer.hpp │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ ├── matrix_inverse.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── noise.hpp │ │ │ │ ├── noise.inl │ │ │ │ ├── packing.hpp │ │ │ │ ├── packing.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── random.hpp │ │ │ │ ├── random.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── reciprocal.inl │ │ │ │ ├── round.hpp │ │ │ │ ├── round.inl │ │ │ │ ├── type_precision.hpp │ │ │ │ ├── type_precision.inl │ │ │ │ ├── type_ptr.hpp │ │ │ │ ├── type_ptr.inl │ │ │ │ ├── ulp.hpp │ │ │ │ ├── ulp.inl │ │ │ │ ├── vec1.hpp │ │ │ │ └── vec1.inl │ │ │ ├── gtx │ │ │ │ ├── associated_min_max.hpp │ │ │ │ ├── associated_min_max.inl │ │ │ │ ├── bit.hpp │ │ │ │ ├── bit.inl │ │ │ │ ├── closest_point.hpp │ │ │ │ ├── closest_point.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ ├── common.hpp │ │ │ │ ├── common.inl │ │ │ │ ├── compatibility.hpp │ │ │ │ ├── compatibility.inl │ │ │ │ ├── component_wise.hpp │ │ │ │ ├── component_wise.inl │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ ├── dual_quaternion.inl │ │ │ │ ├── euler_angles.hpp │ │ │ │ ├── euler_angles.inl │ │ │ │ ├── extend.hpp │ │ │ │ ├── extend.inl │ │ │ │ ├── extented_min_max.hpp │ │ │ │ ├── extented_min_max.inl │ │ │ │ ├── fast_exponential.hpp │ │ │ │ ├── fast_exponential.inl │ │ │ │ ├── fast_square_root.hpp │ │ │ │ ├── fast_square_root.inl │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ ├── gradient_paint.hpp │ │ │ │ ├── gradient_paint.inl │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ ├── hash.hpp │ │ │ │ ├── hash.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── intersect.hpp │ │ │ │ ├── intersect.inl │ │ │ │ ├── io.hpp │ │ │ │ ├── io.inl │ │ │ │ ├── log_base.hpp │ │ │ │ ├── log_base.inl │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ ├── matrix_decompose.hpp │ │ │ │ ├── matrix_decompose.inl │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ ├── matrix_operation.hpp │ │ │ │ ├── matrix_operation.inl │ │ │ │ ├── matrix_query.hpp │ │ │ │ ├── matrix_query.inl │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ ├── mixed_product.hpp │ │ │ │ ├── mixed_product.inl │ │ │ │ ├── norm.hpp │ │ │ │ ├── norm.inl │ │ │ │ ├── normal.hpp │ │ │ │ ├── normal.inl │ │ │ │ ├── normalize_dot.hpp │ │ │ │ ├── normalize_dot.inl │ │ │ │ ├── number_precision.hpp │ │ │ │ ├── number_precision.inl │ │ │ │ ├── optimum_pow.hpp │ │ │ │ ├── optimum_pow.inl │ │ │ │ ├── orthonormalize.hpp │ │ │ │ ├── orthonormalize.inl │ │ │ │ ├── perpendicular.hpp │ │ │ │ ├── perpendicular.inl │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ ├── polar_coordinates.inl │ │ │ │ ├── projection.hpp │ │ │ │ ├── projection.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── range.hpp │ │ │ │ ├── raw_data.hpp │ │ │ │ ├── raw_data.inl │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ ├── rotate_vector.hpp │ │ │ │ ├── rotate_vector.inl │ │ │ │ ├── scalar_multiplication.hpp │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── simd_mat4.hpp │ │ │ │ ├── simd_mat4.inl │ │ │ │ ├── simd_quat.hpp │ │ │ │ ├── simd_quat.inl │ │ │ │ ├── simd_vec4.hpp │ │ │ │ ├── simd_vec4.inl │ │ │ │ ├── spline.hpp │ │ │ │ ├── spline.inl │ │ │ │ ├── std_based_type.hpp │ │ │ │ ├── std_based_type.inl │ │ │ │ ├── string_cast.hpp │ │ │ │ ├── string_cast.inl │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform.inl │ │ │ │ ├── transform2.hpp │ │ │ │ ├── transform2.inl │ │ │ │ ├── type_aligned.hpp │ │ │ │ ├── type_aligned.inl │ │ │ │ ├── vector_angle.hpp │ │ │ │ ├── vector_angle.inl │ │ │ │ ├── vector_query.hpp │ │ │ │ ├── vector_query.inl │ │ │ │ ├── wrap.hpp │ │ │ │ └── wrap.inl │ │ │ ├── integer.hpp │ │ │ ├── mat2x2.hpp │ │ │ ├── mat2x3.hpp │ │ │ ├── mat2x4.hpp │ │ │ ├── mat3x2.hpp │ │ │ ├── mat3x3.hpp │ │ │ ├── mat3x4.hpp │ │ │ ├── mat4x2.hpp │ │ │ ├── mat4x3.hpp │ │ │ ├── mat4x4.hpp │ │ │ ├── matrix.hpp │ │ │ ├── packing.hpp │ │ │ ├── simd │ │ │ │ └── platform.h │ │ │ ├── trigonometric.hpp │ │ │ ├── vec2.hpp │ │ │ ├── vec3.hpp │ │ │ ├── vec4.hpp │ │ │ └── vector_relational.hpp │ │ └── readme.md │ └── opencv-3.0.0 │ │ ├── LICENSE │ │ ├── include │ │ ├── opencv │ │ │ ├── cv.h │ │ │ ├── cv.hpp │ │ │ ├── cvaux.h │ │ │ ├── cvaux.hpp │ │ │ ├── cvwimage.h │ │ │ ├── cxcore.h │ │ │ ├── cxcore.hpp │ │ │ ├── cxeigen.hpp │ │ │ ├── cxmisc.h │ │ │ ├── highgui.h │ │ │ └── ml.h │ │ └── opencv2 │ │ │ ├── calib3d.hpp │ │ │ ├── calib3d │ │ │ ├── calib3d.hpp │ │ │ └── calib3d_c.h │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ ├── affine.hpp │ │ │ ├── base.hpp │ │ │ ├── bufferpool.hpp │ │ │ ├── core.hpp │ │ │ ├── core_c.h │ │ │ ├── cuda.hpp │ │ │ ├── cuda.inl.hpp │ │ │ ├── cuda │ │ │ │ ├── block.hpp │ │ │ │ ├── border_interpolate.hpp │ │ │ │ ├── color.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── datamov_utils.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ ├── emulation.hpp │ │ │ │ ├── filters.hpp │ │ │ │ ├── funcattrib.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── saturate_cast.hpp │ │ │ │ ├── scan.hpp │ │ │ │ ├── simd_functions.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── vec_distance.hpp │ │ │ │ ├── vec_math.hpp │ │ │ │ ├── vec_traits.hpp │ │ │ │ ├── warp.hpp │ │ │ │ ├── warp_reduce.hpp │ │ │ │ └── warp_shuffle.hpp │ │ │ ├── cuda_stream_accessor.hpp │ │ │ ├── cuda_types.hpp │ │ │ ├── cvdef.h │ │ │ ├── cvstd.hpp │ │ │ ├── cvstd.inl.hpp │ │ │ ├── directx.hpp │ │ │ ├── eigen.hpp │ │ │ ├── ippasync.hpp │ │ │ ├── mat.hpp │ │ │ ├── mat.inl.hpp │ │ │ ├── matx.hpp │ │ │ ├── ocl.hpp │ │ │ ├── ocl_genbase.hpp │ │ │ ├── opengl.hpp │ │ │ ├── operations.hpp │ │ │ ├── optim.hpp │ │ │ ├── persistence.hpp │ │ │ ├── private.cuda.hpp │ │ │ ├── private.hpp │ │ │ ├── ptr.inl.hpp │ │ │ ├── sse_utils.hpp │ │ │ ├── traits.hpp │ │ │ ├── types.hpp │ │ │ ├── types_c.h │ │ │ ├── utility.hpp │ │ │ ├── version.hpp │ │ │ └── wimage.hpp │ │ │ ├── cvconfig.h │ │ │ ├── features2d.hpp │ │ │ ├── features2d │ │ │ └── features2d.hpp │ │ │ ├── flann.hpp │ │ │ ├── flann │ │ │ ├── all_indices.h │ │ │ ├── allocator.h │ │ │ ├── any.h │ │ │ ├── autotuned_index.h │ │ │ ├── composite_index.h │ │ │ ├── config.h │ │ │ ├── defines.h │ │ │ ├── dist.h │ │ │ ├── dummy.h │ │ │ ├── dynamic_bitset.h │ │ │ ├── flann.hpp │ │ │ ├── flann_base.hpp │ │ │ ├── general.h │ │ │ ├── ground_truth.h │ │ │ ├── hdf5.h │ │ │ ├── heap.h │ │ │ ├── hierarchical_clustering_index.h │ │ │ ├── index_testing.h │ │ │ ├── kdtree_index.h │ │ │ ├── kdtree_single_index.h │ │ │ ├── kmeans_index.h │ │ │ ├── linear_index.h │ │ │ ├── logger.h │ │ │ ├── lsh_index.h │ │ │ ├── lsh_table.h │ │ │ ├── matrix.h │ │ │ ├── miniflann.hpp │ │ │ ├── nn_index.h │ │ │ ├── object_factory.h │ │ │ ├── params.h │ │ │ ├── random.h │ │ │ ├── result_set.h │ │ │ ├── sampling.h │ │ │ ├── saving.h │ │ │ ├── simplex_downhill.h │ │ │ └── timer.h │ │ │ ├── hal.hpp │ │ │ ├── hal │ │ │ ├── defs.h │ │ │ ├── intrin.hpp │ │ │ ├── intrin_cpp.hpp │ │ │ ├── intrin_neon.hpp │ │ │ └── intrin_sse.hpp │ │ │ ├── highgui.hpp │ │ │ ├── highgui │ │ │ ├── highgui.hpp │ │ │ └── highgui_c.h │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs_c.h │ │ │ └── ios.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc_c.h │ │ │ └── types_c.h │ │ │ ├── ml.hpp │ │ │ ├── ml │ │ │ └── ml.hpp │ │ │ ├── objdetect.hpp │ │ │ ├── objdetect │ │ │ ├── detection_based_tracker.hpp │ │ │ ├── objdetect.hpp │ │ │ └── objdetect_c.h │ │ │ ├── opencv.hpp │ │ │ ├── opencv_modules.hpp │ │ │ ├── photo.hpp │ │ │ ├── photo │ │ │ ├── cuda.hpp │ │ │ ├── photo.hpp │ │ │ └── photo_c.h │ │ │ ├── shape.hpp │ │ │ ├── shape │ │ │ ├── emdL1.hpp │ │ │ ├── hist_cost.hpp │ │ │ ├── shape.hpp │ │ │ ├── shape_distance.hpp │ │ │ └── shape_transformer.hpp │ │ │ ├── stitching.hpp │ │ │ ├── stitching │ │ │ ├── detail │ │ │ │ ├── autocalib.hpp │ │ │ │ ├── blenders.hpp │ │ │ │ ├── camera.hpp │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ ├── matchers.hpp │ │ │ │ ├── motion_estimators.hpp │ │ │ │ ├── seam_finders.hpp │ │ │ │ ├── timelapsers.hpp │ │ │ │ ├── util.hpp │ │ │ │ ├── util_inl.hpp │ │ │ │ ├── warpers.hpp │ │ │ │ └── warpers_inl.hpp │ │ │ └── warpers.hpp │ │ │ ├── superres.hpp │ │ │ ├── superres │ │ │ └── optical_flow.hpp │ │ │ ├── video.hpp │ │ │ ├── video │ │ │ ├── background_segm.hpp │ │ │ ├── tracking.hpp │ │ │ ├── tracking_c.h │ │ │ └── video.hpp │ │ │ ├── videoio.hpp │ │ │ ├── videoio │ │ │ ├── cap_ios.h │ │ │ ├── videoio.hpp │ │ │ └── videoio_c.h │ │ │ ├── videostab.hpp │ │ │ └── videostab │ │ │ ├── deblurring.hpp │ │ │ ├── fast_marching.hpp │ │ │ ├── fast_marching_inl.hpp │ │ │ ├── frame_source.hpp │ │ │ ├── global_motion.hpp │ │ │ ├── inpainting.hpp │ │ │ ├── log.hpp │ │ │ ├── motion_core.hpp │ │ │ ├── motion_stabilizing.hpp │ │ │ ├── optical_flow.hpp │ │ │ ├── outlier_rejection.hpp │ │ │ ├── ring_buffer.hpp │ │ │ ├── stabilizer.hpp │ │ │ └── wobble_suppression.hpp │ │ └── libs │ │ └── armeabi-v7a │ │ └── libopencv_java3.so │ ├── java │ └── com │ │ └── anandmuralidhar │ │ └── assimpandroid │ │ ├── AssimpActivity.java │ │ ├── GestureClass.java │ │ ├── MyGLRenderer.java │ │ └── MyGLSurfaceView.java │ ├── jni │ ├── jniCalls │ │ ├── assimpActivity.cpp │ │ ├── gestureClass.cpp │ │ └── myGLRenderer.cpp │ └── nativeCode │ │ ├── common │ │ ├── assimpLoader.cpp │ │ ├── assimpLoader.h │ │ ├── misc.cpp │ │ ├── misc.h │ │ ├── myGLCamera.cpp │ │ ├── myGLCamera.h │ │ ├── myGLFunctions.cpp │ │ ├── myGLFunctions.h │ │ ├── myGLM.h │ │ ├── myJNIHelper.cpp │ │ ├── myJNIHelper.h │ │ ├── myLogger.h │ │ ├── myShader.cpp │ │ └── myShader.h │ │ └── modelAssimp │ │ ├── modelAssimp.cpp │ │ └── modelAssimp.h │ └── res │ ├── layout │ └── assimp_layout.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── native_app_glue ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ └── AndroidManifest.xml ├── ndk_helper ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ └── AndroidManifest.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/amenemhat/amenemhat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/assets/amenemhat/amenemhat.jpg -------------------------------------------------------------------------------- /app/src/main/assets/amenemhat/amenemhat.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/assets/amenemhat/amenemhat.mtl -------------------------------------------------------------------------------- /app/src/main/assets/amenemhat/amenemhat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/assets/amenemhat/amenemhat.obj -------------------------------------------------------------------------------- /app/src/main/assets/shaders/modelTextured.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/assets/shaders/modelTextured.fsh -------------------------------------------------------------------------------- /app/src/main/assets/shaders/modelTextured.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/assets/shaders/modelTextured.vsh -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/LICENSE -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/buildForAndroid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/buildForAndroid.sh -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/.editorconfig -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/Compiler/poppack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/Compiler/poppack1.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/Compiler/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/Compiler/pstdint.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/Compiler/pushpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/Compiler/pushpack1.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/DefaultLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/DefaultLogger.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/Exporter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/Exporter.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/IOStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/IOStream.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/IOSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/IOSystem.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/Importer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/Importer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/LogStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/LogStream.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/NullLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/NullLogger.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/ProgressHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/ProgressHandler.hpp -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/ai_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/ai_assert.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/anim.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/camera.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/cexport.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/cfileio.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/cimport.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/color4.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/color4.inl -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/config.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/defs.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/importerdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/importerdesc.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/light.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/material.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/material.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/material.inl -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/matrix3x3.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/matrix3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/matrix3x3.inl -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/matrix4x4.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/matrix4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/matrix4x4.inl -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/mesh.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/metadata.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/port/AndroidJNI/AndroidJNIIOSystem.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/postprocess.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/quaternion.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/scene.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/texture.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/types.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/vector2.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/vector2.inl -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/vector3.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/vector3.inl -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/include/assimp/version.h -------------------------------------------------------------------------------- /app/src/main/externals/assimp-3.0/libs/armeabi-v7a/libassimp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/assimp-3.0/libs/armeabi-v7a/libassimp.so -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/.gitignore -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/copying.txt -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/common.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/_features.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_common.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/glm.cpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/precision.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/setup.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_half.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4_avx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4_avx.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4_avx2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4_avx2.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4_sse2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/detail/type_vec4_sse2.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/exponential.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/ext.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/fwd.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/geometric.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/glm.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/constants.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/integer.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/noise.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/packing.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/random.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/random.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/round.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/round.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/bit.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/common.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/common.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/extend.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/hash.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/integer.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/io.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/io.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/norm.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/normal.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/projection.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/range.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/spline.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/transform.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/integer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat2x2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat2x3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat2x4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat3x2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat3x3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat3x4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat4x2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat4x3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/mat4x4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/matrix.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/packing.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/simd/platform.h -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/trigonometric.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/vec2.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/vec3.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/vec4.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/glm/vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/externals/glm-0.9.7.5/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/glm-0.9.7.5/readme.md -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/LICENSE -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cv.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cv.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cvaux.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cxcore.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/highgui.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv/ml.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/calib3d.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/calib3d/calib3d_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/calib3d/calib3d_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/border_interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/border_interpolate.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/datamov_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/datamov_utils.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/color_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/color_detail.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/reduce.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/reduce_key_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/reduce_key_val.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/transform_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/transform_detail.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/type_traits_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/type_traits_detail.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/vec_distance_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/detail/vec_distance_detail.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/dynamic_smem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/dynamic_smem.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/emulation.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/funcattrib.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/functional.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/saturate_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/saturate_cast.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/simd_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/simd_functions.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/transform.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/type_traits.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/vec_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/vec_distance.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/vec_math.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/vec_traits.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/warp_reduce.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/warp_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda/warp_shuffle.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/ippasync.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/private.cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/private.cuda.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/private.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/ptr.inl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/features2d.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/any.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/config.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/defines.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/hierarchical_clustering_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/hierarchical_clustering_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/kdtree_single_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/kdtree_single_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/lsh_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/lsh_table.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/miniflann.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/params.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/hal.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/hal/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/hal/defs.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/highgui.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/ml.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect/detection_based_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect/detection_based_tracker.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect/objdetect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/objdetect/objdetect_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/photo.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/photo/photo_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/photo/photo_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/shape.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/shape/emdL1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/shape/emdL1.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/shape/hist_cost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/shape/hist_cost.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/shape/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/shape/shape.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/shape/shape_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/shape/shape_distance.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/shape/shape_transformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/shape/shape_transformer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/autocalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/autocalib.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/blenders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/blenders.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/camera.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/exposure_compensate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/exposure_compensate.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/matchers.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/motion_estimators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/motion_estimators.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/seam_finders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/seam_finders.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/timelapsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/timelapsers.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/util.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/util_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/util_inl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/warpers.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/warpers_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/detail/warpers_inl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/stitching/warpers.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/superres.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/superres/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/superres/optical_flow.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/video.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/video/tracking_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/video/tracking_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/video/video.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videoio.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videoio/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videoio/cap_ios.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videoio/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videoio/videoio.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videoio/videoio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videoio/videoio_c.h -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/deblurring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/deblurring.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/fast_marching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/fast_marching.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/fast_marching_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/fast_marching_inl.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/frame_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/frame_source.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/global_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/global_motion.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/inpainting.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/log.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/motion_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/motion_core.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/motion_stabilizing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/motion_stabilizing.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/optical_flow.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/outlier_rejection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/outlier_rejection.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/ring_buffer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/stabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/stabilizer.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/wobble_suppression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/include/opencv2/videostab/wobble_suppression.hpp -------------------------------------------------------------------------------- /app/src/main/externals/opencv-3.0.0/libs/armeabi-v7a/libopencv_java3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/externals/opencv-3.0.0/libs/armeabi-v7a/libopencv_java3.so -------------------------------------------------------------------------------- /app/src/main/java/com/anandmuralidhar/assimpandroid/AssimpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/java/com/anandmuralidhar/assimpandroid/AssimpActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/anandmuralidhar/assimpandroid/GestureClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/java/com/anandmuralidhar/assimpandroid/GestureClass.java -------------------------------------------------------------------------------- /app/src/main/java/com/anandmuralidhar/assimpandroid/MyGLRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/java/com/anandmuralidhar/assimpandroid/MyGLRenderer.java -------------------------------------------------------------------------------- /app/src/main/java/com/anandmuralidhar/assimpandroid/MyGLSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/java/com/anandmuralidhar/assimpandroid/MyGLSurfaceView.java -------------------------------------------------------------------------------- /app/src/main/jni/jniCalls/assimpActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/jniCalls/assimpActivity.cpp -------------------------------------------------------------------------------- /app/src/main/jni/jniCalls/gestureClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/jniCalls/gestureClass.cpp -------------------------------------------------------------------------------- /app/src/main/jni/jniCalls/myGLRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/jniCalls/myGLRenderer.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/assimpLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/assimpLoader.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/assimpLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/assimpLoader.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/misc.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/misc.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myGLCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myGLCamera.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myGLCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myGLCamera.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myGLFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myGLFunctions.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myGLFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myGLFunctions.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myGLM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myGLM.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myJNIHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myJNIHelper.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myJNIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myJNIHelper.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myLogger.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myShader.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/common/myShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/common/myShader.h -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/modelAssimp/modelAssimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/modelAssimp/modelAssimp.cpp -------------------------------------------------------------------------------- /app/src/main/jni/nativeCode/modelAssimp/modelAssimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/jni/nativeCode/modelAssimp/modelAssimp.h -------------------------------------------------------------------------------- /app/src/main/res/layout/assimp_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/layout/assimp_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/gradlew.bat -------------------------------------------------------------------------------- /native_app_glue/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native_app_glue/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/native_app_glue/build.gradle -------------------------------------------------------------------------------- /native_app_glue/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/native_app_glue/proguard-rules.pro -------------------------------------------------------------------------------- /native_app_glue/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/native_app_glue/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ndk_helper/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ndk_helper/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/ndk_helper/build.gradle -------------------------------------------------------------------------------- /ndk_helper/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/ndk_helper/proguard-rules.pro -------------------------------------------------------------------------------- /ndk_helper/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/ndk_helper/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandmuralidhar24/AssimpAndroid/HEAD/settings.gradle --------------------------------------------------------------------------------