new stuff
8
vendor/assimp/test/.editorconfig
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# See <http://EditorConfig.org> for details
|
||||
|
||||
[*.{h,hpp,c,cpp}]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
309
vendor/assimp/test/CMakeLists.txt
vendored
Normal file
|
|
@ -0,0 +1,309 @@
|
|||
# Open Asset Import Library (assimp)
|
||||
# ----------------------------------------------------------------------
|
||||
# Copyright (c) 2006-2026, assimp team
|
||||
#
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this software in source and binary forms,
|
||||
# with or without modification, are permitted provided that the
|
||||
# following conditions are met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above
|
||||
# copyright notice, this list of conditions and the
|
||||
# following disclaimer.
|
||||
#
|
||||
# * Redistributions in binary form must reproduce the above
|
||||
# copyright notice, this list of conditions and the
|
||||
# following disclaimer in the documentation and/or other
|
||||
# materials provided with the distribution.
|
||||
#
|
||||
# * Neither the name of the assimp team, nor the names of its
|
||||
# contributors may be used to endorse or promote products
|
||||
# derived from this software without specific prior
|
||||
# written permission of the assimp team.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
#----------------------------------------------------------------------
|
||||
cmake_minimum_required( VERSION 3.10 )
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${Assimp_SOURCE_DIR}/test/unit
|
||||
${Assimp_SOURCE_DIR}/include
|
||||
${Assimp_SOURCE_DIR}/code
|
||||
)
|
||||
|
||||
if(NOT ASSIMP_HUNTER_ENABLED)
|
||||
INCLUDE_DIRECTORIES(
|
||||
${Assimp_SOURCE_DIR}/contrib/googletest/googletest/include
|
||||
${Assimp_SOURCE_DIR}/contrib/googletest/googletest/
|
||||
${Assimp_SOURCE_DIR}/contrib/pugixml/src
|
||||
)
|
||||
endif()
|
||||
|
||||
if (MSVC)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING")
|
||||
endif()
|
||||
|
||||
# Add the temporary output directories to the library path to make sure the
|
||||
# Assimp library can be found, even if it is not installed system-wide yet.
|
||||
LINK_DIRECTORIES( ${Assimp_BINARY_DIR} ${AssetImporter_BINARY_DIR}/lib )
|
||||
|
||||
SET(TOOLS
|
||||
unit/Tools/TestTools.h
|
||||
)
|
||||
|
||||
SET( COMMON
|
||||
unit/utSimd.cpp
|
||||
unit/utIOSystem.cpp
|
||||
unit/utIOStreamBuffer.cpp
|
||||
unit/utIssues.cpp
|
||||
unit/utAnim.cpp
|
||||
unit/AssimpAPITest.cpp
|
||||
unit/AssimpAPITest_aiMatrix3x3.cpp
|
||||
unit/AssimpAPITest_aiMatrix4x4.cpp
|
||||
unit/AssimpAPITest_aiQuaternion.cpp
|
||||
unit/AssimpAPITest_aiVector2D.cpp
|
||||
unit/AssimpAPITest_aiVector3D.cpp
|
||||
unit/MathTest.cpp
|
||||
unit/MathTest.h
|
||||
unit/RandomNumberGeneration.h
|
||||
unit/utBatchLoader.cpp
|
||||
unit/utDefaultIOStream.cpp
|
||||
unit/utFastAtof.cpp
|
||||
unit/utMetadata.cpp
|
||||
unit/SceneDiffer.h
|
||||
unit/SceneDiffer.cpp
|
||||
unit/UTLogStream.h
|
||||
unit/AbstractImportExportBase.cpp
|
||||
unit/TestIOSystem.h
|
||||
unit/TestModelFactory.h
|
||||
unit/utTypes.cpp
|
||||
unit/utVersion.cpp
|
||||
unit/Common/utParsingUtils.cpp
|
||||
unit/utProfiler.cpp
|
||||
unit/utSharedPPData.cpp
|
||||
unit/utStringUtils.cpp
|
||||
unit/Common/utMaybe.cpp
|
||||
unit/Common/utMesh.cpp
|
||||
unit/Common/utStandardShapes.cpp
|
||||
unit/Common/uiScene.cpp
|
||||
unit/Common/utLineSplitter.cpp
|
||||
unit/Common/utSpatialSort.cpp
|
||||
unit/Common/utAssertHandler.cpp
|
||||
unit/Common/utXmlParser.cpp
|
||||
unit/Common/utBase64.cpp
|
||||
unit/Common/utHash.cpp
|
||||
unit/Common/utBaseProcess.cpp
|
||||
unit/Common/utLogger.cpp
|
||||
)
|
||||
|
||||
SET(Geometry
|
||||
unit/Geometry/utGeometryUtils.cpp
|
||||
)
|
||||
|
||||
SET( IMPORTERS
|
||||
unit/ImportExport/Assxml/utAssxmlImportExport.cpp
|
||||
unit/utLWSImportExport.cpp
|
||||
unit/utLWOImportExport.cpp
|
||||
unit/utSMDImportExport.cpp
|
||||
unit/utglTFImportExport.cpp
|
||||
unit/utglTF2ImportExport.cpp
|
||||
unit/utHMPImportExport.cpp
|
||||
unit/utIFCImportExport.cpp
|
||||
unit/utFBXImporterExporter.cpp
|
||||
unit/utImporter.cpp
|
||||
unit/ImportExport/utExporter.cpp
|
||||
unit/ut3DImportExport.cpp
|
||||
unit/ut3DSImportExport.cpp
|
||||
unit/utACImportExport.cpp
|
||||
unit/utAMFImportExport.cpp
|
||||
unit/utASEImportExport.cpp
|
||||
unit/utD3MFImportExport.cpp
|
||||
unit/utQ3DImportExport.cpp
|
||||
unit/utSTLImportExport.cpp
|
||||
unit/utXImporterExporter.cpp
|
||||
unit/utX3DImportExport.cpp
|
||||
unit/utDXFImporterExporter.cpp
|
||||
unit/utPMXImporter.cpp
|
||||
unit/utPLYImportExport.cpp
|
||||
unit/utObjImportExport.cpp
|
||||
unit/utObjTools.cpp
|
||||
unit/utOpenGEXImportExport.cpp
|
||||
unit/utSIBImporter.cpp
|
||||
unit/utBlenderIntermediate.cpp
|
||||
unit/utBlendImportAreaLight.cpp
|
||||
unit/utBlenderImportExport.cpp
|
||||
unit/utBlendImportMaterials.cpp
|
||||
unit/utBlenderWork.cpp
|
||||
unit/utBVHImportExport.cpp
|
||||
unit/utCSMImportExport.cpp
|
||||
unit/utB3DImportExport.cpp
|
||||
#unit/utM3DImportExport.cpp
|
||||
unit/utMDCImportExport.cpp
|
||||
unit/utAssbinImportExport.cpp
|
||||
unit/ImportExport/utAssjsonImportExport.cpp
|
||||
unit/ImportExport/utCOBImportExport.cpp
|
||||
unit/ImportExport/utOgreImportExport.cpp
|
||||
unit/ImportExport/utQ3BSPFileImportExport.cpp
|
||||
unit/ImportExport/utOFFImportExport.cpp
|
||||
unit/ImportExport/utNFFImportExport.cpp
|
||||
unit/ImportExport/utXGLImportExport.cpp
|
||||
unit/ImportExport/utMD2Importer.cpp
|
||||
#unit/ImportExport/utMD3Importer.cpp
|
||||
unit/ImportExport/utMD5Importer.cpp
|
||||
unit/ImportExport/utMDLImporter.cpp
|
||||
unit/ImportExport/MDL/MDLHL1TestFiles.h
|
||||
unit/ImportExport/MDL/utMDLImporter_HL1_ImportSettings.cpp
|
||||
unit/ImportExport/MDL/utMDLImporter_HL1_Materials.cpp
|
||||
unit/ImportExport/MDL/utMDLImporter_HL1_Nodes.cpp
|
||||
unit/ImportExport/RAW/utRAWImportExport.cpp
|
||||
unit/ImportExport/Terragen/utTerragenImportExport.cpp
|
||||
unit/ImportExport/Pbrt/utPbrtImportExport.cpp
|
||||
)
|
||||
|
||||
if(ASSIMP_BUILD_USD_IMPORTER)
|
||||
list( APPEND IMPORTERS
|
||||
unit/utUSDImport.cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
if(ASSIMP_BUILD_COLLADA_EXPORTER)
|
||||
list( APPEND IMPORTERS
|
||||
unit/utColladaExport.cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
if(ASSIMP_BUILD_COLLADA_IMPORTER)
|
||||
list( APPEND IMPORTERS
|
||||
unit/utColladaImportExport.cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
SET( MATERIAL
|
||||
unit/utMaterialSystem.cpp
|
||||
)
|
||||
|
||||
SET( MATH
|
||||
unit/utMatrix3x3.cpp
|
||||
unit/utMatrix4x4.cpp
|
||||
unit/utVector3.cpp
|
||||
)
|
||||
|
||||
SET( POST_PROCESSES
|
||||
unit/utImproveCacheLocality.cpp
|
||||
unit/utFixInfacingNormals.cpp
|
||||
unit/utGenNormals.cpp
|
||||
unit/utTriangulate.cpp
|
||||
unit/utTextureTransform.cpp
|
||||
unit/utRemoveRedundantMaterials.cpp
|
||||
unit/utRemoveVCProcess.cpp
|
||||
unit/utScaleProcess.cpp
|
||||
unit/utArmaturePopulate.cpp
|
||||
unit/utJoinVertices.cpp
|
||||
unit/utRemoveComments.cpp
|
||||
unit/utRemoveComponent.cpp
|
||||
unit/utVertexTriangleAdjacency.cpp
|
||||
unit/utJoinVertices.cpp
|
||||
unit/utSplitLargeMeshes.cpp
|
||||
unit/utFindDegenerates.cpp
|
||||
unit/utFindInvalidData.cpp
|
||||
unit/utLimitBoneWeights.cpp
|
||||
unit/utPretransformVertices.cpp
|
||||
unit/utScenePreprocessor.cpp
|
||||
unit/utTargetAnimation.cpp
|
||||
unit/utSortByPType.cpp
|
||||
unit/utSceneCombiner.cpp
|
||||
unit/utGenBoundingBoxesProcess.cpp
|
||||
)
|
||||
|
||||
SOURCE_GROUP( UnitTests\\Compiler FILES unit/CCompilerTest.c )
|
||||
SOURCE_GROUP( UnitTests\\Common FILES ${COMMON} )
|
||||
SOURCE_GROUP( UnitTests\\GeometryTools FILES ${Geometry} )
|
||||
SOURCE_GROUP( UnitTests\\ImportExport FILES ${IMPORTERS} )
|
||||
SOURCE_GROUP( UnitTests\\Material FILES ${MATERIAL} )
|
||||
SOURCE_GROUP( UnitTests\\Math FILES ${MATH} )
|
||||
SOURCE_GROUP( UnitTests\\Tools FILES ${TOOLS} )
|
||||
SOURCE_GROUP( UnitTests\\PostProcess FILES ${POST_PROCESSES})
|
||||
|
||||
add_executable( unit
|
||||
unit/CCompilerTest.c
|
||||
unit/Main.cpp
|
||||
../code/Common/Version.cpp
|
||||
../code/Common/Base64.cpp
|
||||
${COMMON}
|
||||
${Geometry}
|
||||
${IMPORTERS}
|
||||
${MATERIAL}
|
||||
${MATH}
|
||||
${POST_PROCESSES}
|
||||
${TOOLS}
|
||||
)
|
||||
|
||||
if(ASSIMP_HUNTER_ENABLED)
|
||||
hunter_add_package(GTest)
|
||||
find_package(GTest CONFIG REQUIRED)
|
||||
target_link_libraries(unit GTest::gtest_main GTest::gmock)
|
||||
else()
|
||||
target_sources(unit PUBLIC ${Assimp_SOURCE_DIR}/contrib/googletest/googletest/src/gtest-all.cc)
|
||||
endif()
|
||||
|
||||
# RapidJSON
|
||||
IF(ASSIMP_HUNTER_ENABLED)
|
||||
hunter_add_package(RapidJSON)
|
||||
find_package(RapidJSON CONFIG REQUIRED)
|
||||
ELSE()
|
||||
INCLUDE_DIRECTORIES("../contrib/rapidjson/include")
|
||||
ADD_DEFINITIONS( -DRAPIDJSON_HAS_STDSTRING=1)
|
||||
option( ASSIMP_RAPIDJSON_NO_MEMBER_ITERATOR "Suppress rapidjson warning on MSVC (NOTE: breaks android build)" ON )
|
||||
if(ASSIMP_RAPIDJSON_NO_MEMBER_ITERATOR)
|
||||
ADD_DEFINITIONS( -DRAPIDJSON_NOMEMBERITERATORCLASS )
|
||||
endif()
|
||||
ENDIF()
|
||||
|
||||
IF (ASSIMP_BUILD_DRACO)
|
||||
ADD_DEFINITIONS( -DASSIMP_ENABLE_DRACO )
|
||||
ENDIF()
|
||||
|
||||
TARGET_USE_COMMON_OUTPUT_DIRECTORY(unit)
|
||||
|
||||
add_definitions(-DASSIMP_TEST_MODELS_DIR="${CMAKE_CURRENT_LIST_DIR}/models")
|
||||
add_definitions(-DASSIMP_TEST_MODELS_NONBSD_DIR="${CMAKE_CURRENT_LIST_DIR}/models-nonbsd")
|
||||
|
||||
SET_PROPERTY( TARGET assimp PROPERTY DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX} )
|
||||
|
||||
IF( WIN32 )
|
||||
SET( platform_libs )
|
||||
ELSEIF(ANDROID)
|
||||
SET( platform_libs )
|
||||
ELSE()
|
||||
SET( platform_libs pthread )
|
||||
ENDIF()
|
||||
|
||||
IF(MSVC)
|
||||
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
||||
ENDIF()
|
||||
|
||||
IF (ASSIMP_WARNINGS_AS_ERRORS)
|
||||
IF (MSVC)
|
||||
TARGET_COMPILE_OPTIONS(unit PRIVATE /W4 /WX)
|
||||
ELSE()
|
||||
TARGET_COMPILE_OPTIONS(unit PRIVATE -Wall -Werror)
|
||||
ENDIF()
|
||||
ENDIF()
|
||||
|
||||
target_link_libraries( unit assimp ${platform_libs} )
|
||||
|
||||
add_subdirectory(headercheck)
|
||||
|
||||
add_test( unittests unit )
|
||||
37
vendor/assimp/test/headercheck/CMakeLists.txt
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# This file is part of the Spring engine (GPL v2 or later), see LICENSE.html
|
||||
|
||||
OPTION(ASSIMP_HEADERCHECK "adds the target headercheck which compiles every header file, default disabled because it adds many targets" OFF)
|
||||
if(ASSIMP_HEADERCHECK)
|
||||
include_directories(
|
||||
${Assimp_SOURCE_DIR}/code/BoostWorkaround
|
||||
)
|
||||
|
||||
FILE(GLOB_RECURSE headers
|
||||
${Assimp_SOURCE_DIR}/code/*.h
|
||||
)
|
||||
|
||||
set(headerchecklibs "")
|
||||
|
||||
FOREACH( HEADER ${headers} )
|
||||
|
||||
#pseudo unique name
|
||||
string(REPLACE "${Spring_SOURCE_DIR}" "" PLIST "${HEADER}")
|
||||
string(REPLACE "/" ";" PLIST "${PLIST}")
|
||||
SET(TEST_NAME "headercheck_")
|
||||
|
||||
foreach(name ${PLIST})
|
||||
SET(TEST_NAME "${TEST_NAME}_${name}")
|
||||
endforeach()
|
||||
|
||||
SET(TEST_FILE ${CMAKE_CURRENT_BINARY_DIR}/src-generated/${TEST_NAME}.cpp)
|
||||
|
||||
# create test file
|
||||
configure_file( headercheck.cpp.in ${TEST_FILE} )
|
||||
# add library
|
||||
add_library( ${TEST_NAME} EXCLUDE_FROM_ALL ${TEST_FILE} )
|
||||
list(APPEND headerchecklibs ${TEST_NAME})
|
||||
ENDFOREACH()
|
||||
|
||||
add_custom_target(headercheck DEPENDS ${headerchecklibs})
|
||||
|
||||
endif()
|
||||
6
vendor/assimp/test/headercheck/headercheck.cpp.in
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include "@HEADER@"
|
||||
|
||||
int main(int,char**)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
BIN
vendor/assimp/test/models-nonbsd/3D/m_rifl.bmp
vendored
Normal file
|
After Width: | Height: | Size: 192 KiB |
18
vendor/assimp/test/models-nonbsd/3D/mar_rifle.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008.
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
20
vendor/assimp/test/models-nonbsd/3D/mar_rifle.uc
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
class mar expands Actor;
|
||||
|
||||
#exec MESH IMPORT MESH=mar ANIVFILE=MODELS\mar_rifle_a.3d DATAFILE=MODELS\mar_rifle_d.3d X=0 Y=0 Z=0
|
||||
#exec MESH ORIGIN MESH=mar X=0 Y=0 Z=0
|
||||
|
||||
#exec MESH SEQUENCE MESH=mar SEQ=All STARTFRAME=0 NUMFRAMES=30
|
||||
//#exec MESH SEQUENCE MESH=mar SEQ=??? STARTFRAME=0 NUMFRAMES=30
|
||||
|
||||
#exec MESHMAP NEW MESHMAP=mar MESH=mar
|
||||
#exec MESHMAP SCALE MESHMAP=mar X=0.1 Y=0.1 Z=0.2
|
||||
|
||||
#exec TEXTURE IMPORT NAME=Jtex1 FILE=m_rifl.bmp GROUP=Skins FLAGS=2
|
||||
#exec TEXTURE IMPORT NAME=Jtex1 FILE=texture1.pcx GROUP=Skins PALETTE=Jtex1
|
||||
#exec MESHMAP SETTEXTURE MESHMAP=mar NUM=1 TEXTURE=Jtex1
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
DrawType=DT_Mesh
|
||||
Mesh=mar
|
||||
}
|
||||
BIN
vendor/assimp/test/models-nonbsd/3D/mar_rifle_a.3d
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/3D/mar_rifle_d.3d
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/3DS/Granate.3DS
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/3DS/cart_wheel.3DS
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/3DS/cart_wheel.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/3DS/jeep1.3ds
vendored
Normal file
15
vendor/assimp/test/models-nonbsd/3DS/jeep1.3ds.readme.txt
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
Jeep designed, modelled and skinned by me, Psionic
|
||||
|
||||
FREE for use however you like, credits are appreciated!!!
|
||||
|
||||
It was modelled in Milkshape 3D and includes the MS3D files oriented for X or B3D format (BlitzBasic 3D), its 2032 polys with a 512x512 jpg texture map. There are two skin variations plus a UV template to help out if you want to create your own skin variations.
|
||||
|
||||
I'd love to see a few screenshots of it being used in-game so feel free to stop by my site and maybe drop by my forums and show us all what your doing with it!!!!!!!
|
||||
|
||||
Check out more of my work at:-
|
||||
|
||||
http://xu1productions.com/3dstudio/index.html - 3D Game Resources
|
||||
|
||||
http://www.psionicdesign.com - My Main 2D/3D Digital Art site
|
||||
|
||||
Psionic 2002
|
||||
BIN
vendor/assimp/test/models-nonbsd/3DS/jeep1.jpg
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/3DS/m_rifl.bmp
vendored
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
vendor/assimp/test/models-nonbsd/3DS/mar_rifle.3ds
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/3DS/mar_rifle.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/3DS/mp5_sil.3ds
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/3DS/mp5_sil.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/3DS/mp5sil.bmp
vendored
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
vendor/assimp/test/models-nonbsd/3DS/pyramob.3DS
vendored
Normal file
12
vendor/assimp/test/models-nonbsd/3DS/pyramob.3ds.readme.txt
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
hello!
|
||||
|
||||
fell free to use the object...so do what U want!
|
||||
& sent me your pictures...:-)
|
||||
for commercial use, contact me!
|
||||
|
||||
http://www.elektrobar.com/lux/
|
||||
|
||||
or mail to:
|
||||
lux@elektrobar.com
|
||||
|
||||
have fun.....VIRLUX
|
||||
BIN
vendor/assimp/test/models-nonbsd/AMF/3_bananas.amf.7z
vendored
Normal file
14
vendor/assimp/test/models-nonbsd/AMF/ref/README.md
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# AMF 3D model reference images
|
||||
|
||||
## 3_bananas.amf
|
||||
(Note: need to flip UVs when rendering)
|
||||
|
||||
<img alt="3_bananas.amf" src="screenshots/3bananas_amf_uvs_flipped_01.png" width=180 /><img alt="3_bananas.amf" src="screenshots/screenshot_3_bananas.jpeg" width=360 />
|
||||
|
||||
## 3_bananas.amf embedded texture
|
||||
3_bananas.amf embeds a strange-looking but valid texture, which when applied to the model renders correctly.
|
||||
|
||||
(Note that this is a relatively rare example of a 3D model with an "uncompressed" embedded texture,
|
||||
may be useful for developers looking to test their assimp embedded texture implementations)
|
||||
|
||||
<img alt="3bananas_embedded_texture.png" src="screenshots%2F3bananas_embedded_texture.png" width=320 />
|
||||
BIN
vendor/assimp/test/models-nonbsd/AMF/ref/screenshots/3bananas_amf_uvs_flipped_01.png
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/AMF/ref/screenshots/3bananas_embedded_texture.png
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/AMF/ref/screenshots/screenshot_3_bananas.jpeg
vendored
Normal file
|
After Width: | Height: | Size: 46 KiB |
5432
vendor/assimp/test/models-nonbsd/ASE/Rifle.ase
vendored
Normal file
25
vendor/assimp/test/models-nonbsd/ASE/Rifle.source.txt
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
|
||||
|
||||
|
||||
INFO
|
||||
====
|
||||
|
||||
CONVERTED FROM 3DS TO ASE WITH AC3D
|
||||
8245
vendor/assimp/test/models-nonbsd/ASE/Rifle2.ase
vendored
Normal file
24
vendor/assimp/test/models-nonbsd/ASE/Rifle2.source.txt
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
|
||||
|
||||
INFO
|
||||
====
|
||||
|
||||
CONVERTED FROM 3DS TO ASE WITH AC3D
|
||||
BIN
vendor/assimp/test/models-nonbsd/ASE/m_rifl.bmp
vendored
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
vendor/assimp/test/models-nonbsd/ASE/mp5sil.bmp
vendored
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
vendor/assimp/test/models-nonbsd/B3D/axe.jpg
(Stored with Git LFS)
vendored
Normal file
51
vendor/assimp/test/models-nonbsd/B3D/dwarf.source.txt
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
Dwarf lowpoly model Pack
|
||||
Copyright 2004, Psionic Design
|
||||
e-mail: psionic@blueyonder.co.uk
|
||||
Used with permission.
|
||||
|
||||
|
||||
INSTALLATION INSTRUCTIONS:
|
||||
|
||||
To install, simply unzip to your hard drive with the "Use Folder Names" option turned on. And that's it you're ready to go!
|
||||
|
||||
|
||||
|
||||
USAGE INFORMATION:
|
||||
|
||||
Each zip contains the models, textures and animation info for that particular format!
|
||||
|
||||
Please Read the "animationinfo.txt" file included in each zip for the exact frames of animation to use
|
||||
|
||||
Credits to me "Psionic" are really appreciated but are not essential ;-)
|
||||
|
||||
Any questions, screenshots of him in use etc drop by my site or email me at:-
|
||||
|
||||
website: http://www.psionic3d.co.uk
|
||||
email: psionic@blueyonder.co.uk
|
||||
|
||||
|
||||
|
||||
|
||||
WHAT'S INCLUDED IN THE ZIP:
|
||||
|
||||
ReadMe.txt - This file
|
||||
b3d.zip - Blitz 3D Format models and textures
|
||||
ms3d.zip - Milkshape 3D Format models and textures
|
||||
x.zip - DarkBasic Direct X 8 Format models and textures
|
||||
|
||||
|
||||
|
||||
RESTRICTIONS:
|
||||
|
||||
This model pack is available for use in freeware, shareware, commercial games/software with the following restrictions:-
|
||||
|
||||
**You may not sell/re-sell this model pack or claim it as your own.
|
||||
***You may not redistribute this pack in some other model pack through a website or on a compilation CD of any kind, without my written consent.
|
||||
|
||||
|
||||
Psi
|
||||
http://www.psionic3d.co.uk
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
vendor/assimp/test/models-nonbsd/B3D/dwarf2.b3d
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/B3D/dwarf2.jpg
(Stored with Git LFS)
vendored
Normal file
9
vendor/assimp/test/models-nonbsd/B3D/ref/README.md
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# B3D 3D model reference images
|
||||
|
||||
## dwarf2.b3d
|
||||
Note: there's a weird artifact in the animation when the character starts running
|
||||
|
||||
<img alt="dwarf2.b3d" src="screenshots/dwarf2_b3d.gif" width=180 />
|
||||
|
||||
## turtle1.b3d
|
||||
<img alt="turtle1.b3d" src="screenshots/turtle1_b3d.gif" width=320 />
|
||||
BIN
vendor/assimp/test/models-nonbsd/B3D/ref/screenshots/dwarf2_b3d.gif
vendored
Normal file
|
After Width: | Height: | Size: 2.4 MiB |
BIN
vendor/assimp/test/models-nonbsd/B3D/ref/screenshots/turtle1_b3d.gif
vendored
Normal file
|
After Width: | Height: | Size: 4 MiB |
11
vendor/assimp/test/models-nonbsd/B3D/turtle.source.txt
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
turtle1.b3d
|
||||
Copyright 2004, Psionic Design
|
||||
e-mail: psionic@blueyonder.co.uk
|
||||
Used with permission.
|
||||
|
||||
RESTRICTIONS:
|
||||
|
||||
This model pack is available for use in freeware, shareware, commercial games/software with the following restrictions:-
|
||||
|
||||
**You may not sell/re-sell this model pack or claim it as your own.
|
||||
***You may not redistribute this pack in some other model pack through a website or on a compilation CD of any kind, without my written consent.
|
||||
BIN
vendor/assimp/test/models-nonbsd/B3D/turtle1.b3d
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/B3D/turtle1.png
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/BLEND/Bob.blend
(Stored with Git LFS)
vendored
Normal file
31
vendor/assimp/test/models-nonbsd/BLEND/bob.source.txt
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
|
||||
----------------------------------------------------------------------------------------------
|
||||
TITLE : Bob, MD5 character source file
|
||||
AUTHOR : Ken Beyer (kat)
|
||||
EMAIL ADDRESS : info@katsbits.com
|
||||
HOMEPAGE URL : http://www.katsbits.com
|
||||
|
||||
|
||||
MODEL NAME/s
|
||||
Zip file contains *.blend source file and TGA texture assets for MD5 format testing.
|
||||
Files and media are provided "as is" without any explicit or implied warranty of fuctionality.
|
||||
|
||||
|
||||
DISTRIBUTION
|
||||
Copyright © 2009 KatsBits. Distribution MUST include this readme and authorship attribution.
|
||||
Commercial use is permitted with written licensed permission.
|
||||
----------------------------------------------------------------------------------------------
|
||||
|
||||
Files:
|
||||
- Bob.md5mesh
|
||||
- Bob.md5anim
|
||||
- Bob.blend
|
||||
- ./*.png
|
||||
|
||||
Changes:
|
||||
- converted all tga's to png, updated .blend and .md5mesh accordingly
|
||||
- removed absolute texture paths from the md5mesh file
|
||||
- minor downscaling of all textures to fit in less bytes
|
||||
|
||||
|
||||
|
||||
BIN
vendor/assimp/test/models-nonbsd/BLEND/fleurOptonl.blend
(Stored with Git LFS)
vendored
Normal file
92
vendor/assimp/test/models-nonbsd/BLEND/fleurOptonl.source.txt
vendored
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
Modelled in Blender, textured in Gimp.
|
||||
|
||||
|
||||
Questo modello e' rilasciato sotto Creative Commons Licence, Attribution 2.0
|
||||
per maggiori informazioni su questa licenza:
|
||||
http://creativecommons.org
|
||||
http://creativecommons.org/licenses/by/2.0/it/
|
||||
Puoi utilizzarlo liberamente, modificarlo e migliorarlo.
|
||||
|
||||
************* Ma attenzione!! *********************
|
||||
|
||||
Nel modificare e utilizzare i modelli, ricorda comunque sempre che :
|
||||
"il diritto morale all'integrità dell'opera (diritto dell'autore originale) non ti consente di apportare all'opera deformazioni o modificazioni, od ogni altro atto a danno dell'opera stessa, che possano essere di pregiudizio all'onore o alla reputazione dell'autore (la valutazione della lesione dell'onore o della reputazione avviene sulla base di elementi psicologici soggettivi)"
|
||||
(dalle faq di Creative Commons Italia)
|
||||
http://www.creativecommons.it/node/165#27
|
||||
|
||||
Patti chiari, amicizia lunga.
|
||||
In particolare, sara' da me considerata lesione d'onore l'uso e/o l'adattamento di questi modelli per progetti legati a:
|
||||
|
||||
Razzismo e incitamento all'odio.
|
||||
Promozione della guerra.
|
||||
Crudelta' verso gli animali.
|
||||
Propaganda politica e religiosa.
|
||||
Pornografia.
|
||||
Promozione di comportamenti illegali o immorali.
|
||||
|
||||
Se lo fate rischiate la denuncia e il risarcimento danni.
|
||||
Per qualsiasi chiarimento in proposito potete comunque scrivermi.
|
||||
Questo e' un diritto garantito per legge a me come ad ogni altro artista.
|
||||
L'utilizzo della Creative Commons non influisce su questo diritto.
|
||||
|
||||
************************************************
|
||||
|
||||
This model is released under Creative Commons Licence, Attribution 2.0
|
||||
for information see:
|
||||
http://creativecommons.org
|
||||
http://creativecommons.org/licenses/by/2.0/
|
||||
feel free to use and improve it.
|
||||
|
||||
|
||||
*****************But beware!*********************
|
||||
|
||||
In most countries, the author of visual art is legally granted to keep Integrity of his
|
||||
work, so you are not allowed to do exactely what you want with my models.
|
||||
The author (that is me) has the right to prevent distortion, mutilation, or other modification of his work which would be prejudicial to his or her honor or reputation.
|
||||
|
||||
Me, i consider to be prejudicial to my honor, the modification and/or the use of my models in projects that are related to:
|
||||
|
||||
Racism and hatred instigation.
|
||||
War promotion.
|
||||
Cruelty toward animals.
|
||||
Political an religious propaganda.
|
||||
Pornography.
|
||||
Outlaw and unethical behaviours encouragement.
|
||||
|
||||
This right is granted to me, and to every other artist, no matter if Attribution Licence is applied too. Creative Commons Licence leaves moral rights unaffected.
|
||||
|
||||
*********************************************************************
|
||||
|
||||
|
||||
By Tiziana aka TiZeta.
|
||||
http://www.unbruco.it/offcircle/index.html
|
||||
unbrucom1@unbruco.it
|
||||
tialo@tiscali.it
|
||||
|
||||
##################
|
||||
|
||||
Note
|
||||
|
||||
Questo e' stato il mio secondo modello completo.
|
||||
Per questo motivo potrebbe contenere errori e imprecisioni.
|
||||
|
||||
Al momento, questi sono i difetti che ho notato:
|
||||
|
||||
- Non e' nell'origine degli assi.
|
||||
- lo scheletro ha il centro spostato di lato
|
||||
- Nel texture sheet c'e' spazio sprecato.
|
||||
|
||||
|
||||
|
||||
###################
|
||||
|
||||
Notes
|
||||
|
||||
This was my first complete model, so it probably contains something
|
||||
wrong.
|
||||
|
||||
At the moment, this is what i noticed:
|
||||
|
||||
- She's not in the origin of axis
|
||||
- Armature's center is not in armature's center.
|
||||
- Texture sheet contains wasted space.
|
||||
BIN
vendor/assimp/test/models-nonbsd/BLEND/guard1_body.png
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/BLEND/guard1_face.png
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/BLEND/guard1_helmet.png
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/BLEND/iron_grill.png
(Stored with Git LFS)
vendored
Normal file
4
vendor/assimp/test/models-nonbsd/BLEND/ref/README.md
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# BLEND 3D model reference images
|
||||
|
||||
## fleurOptonl.blend
|
||||
<img alt="fleurOptonl.blend" src="screenshots/fleurOptonl_blend.png" width=180 />
|
||||
BIN
vendor/assimp/test/models-nonbsd/BLEND/ref/screenshots/fleurOptonl_blend.png
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/BLEND/round_grill.png
(Stored with Git LFS)
vendored
Normal file
16024
vendor/assimp/test/models-nonbsd/DXF/rifle.dxf
vendored
Normal file
23
vendor/assimp/test/models-nonbsd/DXF/rifle.source.txt
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
|
||||
INFO
|
||||
====
|
||||
|
||||
COnverted from 3ds to DXF with Ac3D
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/COLLADA.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/Cinema4D.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/ConcavePolygon.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/Granate.fbx
(Stored with Git LFS)
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/cart_wheel.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/cube_with_2UVs.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/duck.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/duckCM.tga
vendored
Normal file
|
After Width: | Height: | Size: 768 KiB |
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/duck_sample.jpg
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/jeep1.fbx
(Stored with Git LFS)
vendored
Normal file
15
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/jeep1.fbx.readme.txt
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
Jeep designed, modelled and skinned by me, Psionic
|
||||
|
||||
FREE for use however you like, credits are appreciated!!!
|
||||
|
||||
It was modelled in Milkshape 3D and includes the MS3D files oriented for X or B3D format (BlitzBasic 3D), its 2032 polys with a 512x512 jpg texture map. There are two skin variations plus a UV template to help out if you want to create your own skin variations.
|
||||
|
||||
I'd love to see a few screenshots of it being used in-game so feel free to stop by my site and maybe drop by my forums and show us all what your doing with it!!!!!!!
|
||||
|
||||
Check out more of my work at:-
|
||||
|
||||
http://xu1productions.com/3dstudio/index.html - 3D Game Resources
|
||||
|
||||
http://www.psionicdesign.com - My Main 2D/3D Digital Art site
|
||||
|
||||
Psionic 2002
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/jeep1.jpg
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/kwxport_test_vcolors.fbx
(Stored with Git LFS)
vendored
Normal file
16
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/kwxport_test_vcolors.fbx.source.txt
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
From kwxport
|
||||
http://www.kwxport.org/
|
||||
|
||||
>>
|
||||
The kW Xport plug-in source is released under the MIT license.
|
||||
Basically, it means "feel free to use it; credit the source; don't sue me
|
||||
if something goes wrong."
|
||||
>>
|
||||
|
||||
MIT License
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/m_rifl.bmp
vendored
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/mar_rifle.fbx
(Stored with Git LFS)
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/mar_rifle.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/mp5_sil.fbx
(Stored with Git LFS)
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/mp5_sil.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/mp5sil.bmp
vendored
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/pyramob.fbx
(Stored with Git LFS)
vendored
Normal file
12
vendor/assimp/test/models-nonbsd/FBX/2013_ASCII/pyramob.fbx.readme.txt
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
hello!
|
||||
|
||||
fell free to use the object...so do what U want!
|
||||
& sent me your pictures...:-)
|
||||
for commercial use, contact me!
|
||||
|
||||
http://www.elektrobar.com/lux/
|
||||
|
||||
or mail to:
|
||||
lux@elektrobar.com
|
||||
|
||||
have fun.....VIRLUX
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/COLLADA.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/Cinema4D.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/ConcavePolygon.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/Granate.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/anims_with_full_rotations_between_keys.fbx
(Stored with Git LFS)
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/cart_wheel.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/cube_with_2UVs.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/duck.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/jeep1.fbx
(Stored with Git LFS)
vendored
Normal file
15
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/jeep1.fbx.readme.txt
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
Jeep designed, modelled and skinned by me, Psionic
|
||||
|
||||
FREE for use however you like, credits are appreciated!!!
|
||||
|
||||
It was modelled in Milkshape 3D and includes the MS3D files oriented for X or B3D format (BlitzBasic 3D), its 2032 polys with a 512x512 jpg texture map. There are two skin variations plus a UV template to help out if you want to create your own skin variations.
|
||||
|
||||
I'd love to see a few screenshots of it being used in-game so feel free to stop by my site and maybe drop by my forums and show us all what your doing with it!!!!!!!
|
||||
|
||||
Check out more of my work at:-
|
||||
|
||||
http://xu1productions.com/3dstudio/index.html - 3D Game Resources
|
||||
|
||||
http://www.psionicdesign.com - My Main 2D/3D Digital Art site
|
||||
|
||||
Psionic 2002
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/kwxport_test_vcolors.fbx
(Stored with Git LFS)
vendored
Normal file
16
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/kwxport_test_vcolors.fbx.source.txt
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
From kwxport
|
||||
http://www.kwxport.org/
|
||||
|
||||
>>
|
||||
The kW Xport plug-in source is released under the MIT license.
|
||||
Basically, it means "feel free to use it; credit the source; don't sue me
|
||||
if something goes wrong."
|
||||
>>
|
||||
|
||||
MIT License
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/mar_rifle.fbx
(Stored with Git LFS)
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/mar_rifle.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/mp5_sil.fbx
(Stored with Git LFS)
vendored
Normal file
18
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/mp5_sil.source.txt
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
=====================================================================
|
||||
|
||||
From http://telias.free.fr
|
||||
Model copyright: Elias Tsiantas
|
||||
|
||||
=====================================================================
|
||||
|
||||
Downloaded 4th November 2008 (Obama ftw!).
|
||||
Notice found on the page:
|
||||
|
||||
"
|
||||
Free the models is a site that offers free 3d models in 3ds, bryce, poser,
|
||||
lightwave and md2 format. Also a great collection of textures to use in
|
||||
your favorite modelling and rendering program. All the content is free
|
||||
for any use. In the future more 3d formats will be added and some other
|
||||
sections such as wallpapers, 3d screensavers, 3d coding source code and
|
||||
tutorials.
|
||||
"
|
||||
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/multiple_animations_test.fbx
(Stored with Git LFS)
vendored
Normal file
BIN
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/pyramob.fbx
(Stored with Git LFS)
vendored
Normal file
12
vendor/assimp/test/models-nonbsd/FBX/2013_BINARY/pyramob.fbx.readme.txt
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
hello!
|
||||
|
||||
fell free to use the object...so do what U want!
|
||||
& sent me your pictures...:-)
|
||||
for commercial use, contact me!
|
||||
|
||||
http://www.elektrobar.com/lux/
|
||||
|
||||
or mail to:
|
||||
lux@elektrobar.com
|
||||
|
||||
have fun.....VIRLUX
|
||||
4
vendor/assimp/test/models-nonbsd/HMP/ref/README.md
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# HMP 3D model reference images
|
||||
|
||||
## terrain_withtexture.hmp
|
||||
<img alt="terrain_withtexture.hmp" src="screenshots/terrain_withtexture_hmp.png" width=180 />
|
||||