Home
last modified time | relevance | path

Searched refs:TexMap (Results 1 – 22 of 22) sorted by relevance

/dports/cad/repsnapper/repsnapper-2.5a4/libraries/amf/amftools-code/src/
H A DnTriangle.cpp33 TexMap = In.TexMap; in operator =()
51 TexMap.Clear(); in Clear()
67 if (TexMapExists) if (!TexMap.WriteXML(pXML, pMessage)) return false; in WriteXML()
84 …if (pXML->OpenElement("texmap")){TexMap.ReadXML(pXML, pAmf, StrictLoad, pMessage); TexMapExists=tr… in ReadXML()
96 …if (pXML->OpenElement("map")){TexMap.ReadXML(pXML, pAmf, StrictLoad, pMessage); TexMapExists=true;… in ReadXML()
H A DAMF_File.cpp191 if (lt->TexMap.RTexID == PrevTexIDs[i]){lt->TexMap.RTexID = NewTexIDs[i];} in ImportAmf()
192 if (lt->TexMap.GTexID == PrevTexIDs[i]){lt->TexMap.GTexID = NewTexIDs[i];} in ImportAmf()
193 if (lt->TexMap.BTexID == PrevTexIDs[i]){lt->TexMap.BTexID = NewTexIDs[i];} in ImportAmf()
194 …if (lt->TexMap.ATexIDExists && lt->TexMap.ATexID == PrevTexIDs[i]){lt->TexMap.ATexID = NewTexIDs[i… in ImportAmf()
2163 …try{CurMesh->AddFacet(v[0], v[1], v[2], TexMap(MeshTexIndex, pMap->uTex1, pMap->uTex2, pMap->uTex3… in RenderMesh()
H A DMesh.cpp681 CFacet* CMesh::AddFacet(const Vec3D& v1, const Vec3D& v2, const Vec3D& v3, const TexMap& MapIn) //a… in AddFacet()
701 CFacet* CMesh::AddFacet(const CVertex& v1, const CVertex& v2, const CVertex& v3, const TexMap& MapI… in AddFacet()
/dports/cad/repsnapper/repsnapper-2.5a4/libraries/amf/amftools-code/include/
H A DMesh.h51 struct TexMap { struct
52 TexMap() {}; in TexMap() function
54TexMap(const int TexIndexIn, const double U1In, const double U2In, const double U3In, const double…
56 …inline TexMap& operator=(const TexMap& t) {TexIndex=t.TexIndex; uc[0]=t.uc[0]; uc[1]=t.uc[1]; uc[2…
57 TexMap(const TexMap& t) {*this = t;} in TexMap() function
82 TexMap Map; //mapping to a texture argument
184 …CFacet* AddFacet(const Vec3D& v1, const Vec3D& v2, const Vec3D& v3, const TexMap& MapIn); //adds a…
187 …CFacet* AddFacet(const CVertex& v1, const CVertex& v2, const CVertex& v3, const TexMap& MapIn); //…
H A DnTriangle.h47 nTexmap TexMap; variable
50 void SetTexMap(const nTexmap& TexMapIn) {TexMap = TexMapIn; TexMapExists = true;} in SetTexMap()
51 nTexmap* GetpTexMap(void) {return &TexMap;} in GetpTexMap()
/dports/devel/upp/upp/bazaar/plugin/assimp/code/AMF/
H A DAMFImporter_Postprocess.cpp333 if(texmap_is_equal(face_start.TexMap, it->TexMap)) in PostprocessHelper_SplitFacesByTextureID()
437 complex_face.TexMap = nullptr; in Postprocess_BuildMeshSet()
446 … complex_face.TexMap = reinterpret_cast<const CAMFImporter_NodeElement_TexMap*>(ne_triangle_child); in Postprocess_BuildMeshSet()
643 if(face_list_cur.front().TexMap != nullptr) in Postprocess_BuildMeshSet()
655 …t<unsigned int>(PostprocessHelper_GetTextureID_Or_Create(face_list_cur.front().TexMap->TextureID_R, in Postprocess_BuildMeshSet()
656 face_list_cur.front().TexMap->TextureID_G, in Postprocess_BuildMeshSet()
657 face_list_cur.front().TexMap->TextureID_B, in Postprocess_BuildMeshSet()
658 face_list_cur.front().TexMap->TextureID_A)); in Postprocess_BuildMeshSet()
668 texcoord_arr.at(idx_vert) = face_cur.TexMap->TextureCoordinate[idx_ind]; in Postprocess_BuildMeshSet()
671 else if(texcoord_arr.at(idx_vert) != face_cur.TexMap->TextureCoordinate[idx_ind]) in Postprocess_BuildMeshSet()
[all …]
H A DAMFImporter.hpp142 …const CAMFImporter_NodeElement_TexMap* TexMap;///< Face texture mapping data. Equal to nullptr if … member
/dports/multimedia/assimp/assimp-5.1.3/code/AssetLib/AMF/
H A DAMFImporter_Postprocess.cpp305 if (texmap_is_equal(face_start.TexMap, it->TexMap)) { in PostprocessHelper_SplitFacesByTextureID()
400 complex_face.TexMap = nullptr; in Postprocess_BuildMeshSet()
407 … complex_face.TexMap = reinterpret_cast<const AMFTexMap *>(ne_triangle_child); in Postprocess_BuildMeshSet()
580 if (face_list_cur.front().TexMap != nullptr) { in Postprocess_BuildMeshSet()
592 …t<unsigned int>(PostprocessHelper_GetTextureID_Or_Create(face_list_cur.front().TexMap->TextureID_R, in Postprocess_BuildMeshSet()
593 face_list_cur.front().TexMap->TextureID_G, in Postprocess_BuildMeshSet()
594 face_list_cur.front().TexMap->TextureID_B, in Postprocess_BuildMeshSet()
595 face_list_cur.front().TexMap->TextureID_A)); in Postprocess_BuildMeshSet()
602 … texcoord_arr.at(idx_vert) = face_cur.TexMap->TextureCoordinate[idx_ind]; in Postprocess_BuildMeshSet()
604 … } else if (texcoord_arr.at(idx_vert) != face_cur.TexMap->TextureCoordinate[idx_ind]) { in Postprocess_BuildMeshSet()
[all …]
H A DAMFImporter.hpp139 …const AMFTexMap *TexMap; ///< Face texture mapping data. Equal to nullptr if texture mapping is no… member
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/3rdparty/assimp/code/
H A DAMFImporter_Postprocess.cpp331 if(texmap_is_equal(face_start.TexMap, it->TexMap)) in PostprocessHelper_SplitFacesByTextureID()
435 complex_face.TexMap = nullptr; in Postprocess_BuildMeshSet()
444 … complex_face.TexMap = reinterpret_cast<const CAMFImporter_NodeElement_TexMap*>(ne_triangle_child); in Postprocess_BuildMeshSet()
641 if(face_list_cur.front().TexMap != nullptr) in Postprocess_BuildMeshSet()
653 …t<unsigned int>(PostprocessHelper_GetTextureID_Or_Create(face_list_cur.front().TexMap->TextureID_R, in Postprocess_BuildMeshSet()
654 face_list_cur.front().TexMap->TextureID_G, in Postprocess_BuildMeshSet()
655 face_list_cur.front().TexMap->TextureID_B, in Postprocess_BuildMeshSet()
656 face_list_cur.front().TexMap->TextureID_A)); in Postprocess_BuildMeshSet()
666 texcoord_arr.at(idx_vert) = face_cur.TexMap->TextureCoordinate[idx_ind]; in Postprocess_BuildMeshSet()
669 else if(texcoord_arr.at(idx_vert) != face_cur.TexMap->TextureCoordinate[idx_ind]) in Postprocess_BuildMeshSet()
[all …]
H A DAMFImporter.hpp154 …const CAMFImporter_NodeElement_TexMap* TexMap;///< Face texture mapping data. Equal to nullptr if … member
/dports/textproc/dblatex/dblatex-0.3.11py3/lib/dbtexmf/core/
H A Dtxtparser.py60 class TexMap(OptMap): class
72 'TexInputs' : TexMap('--texinputs'),
/dports/games/openclonk/openclonk-release-8.1-src/src/landscape/
H A DC4Texture.cpp190 StdStrBuf TexMap; in LoadFlags() local
191 if (!hGroup.LoadEntryString(szEntryName, &TexMap)) in LoadFlags()
197 for (const char *pPos = TexMap.getData(); pPos && *pPos; pPos = SSearch(pPos + 1, "\n")) in LoadFlags()
H A DC4MapCreatorS2.h320 C4TextureMap *TexMap; // texture map variable
H A DC4MapCreatorS2.cpp406 if (!MapCreator->TexMap->CheckTexture(StrPar)) in SetField()
465 …MatClr=MapCreator->TexMap->GetIndexMatTex(MapCreator->MatMap->Map[Material].Name, *Texture ? Textu… in Evaluate()
764 Landscape=pLandscape; TexMap=pTexMap; MatMap=pMatMap; in C4MapCreatorS2()
/dports/devel/simgear/simgear-2020.3.11/simgear/scene/material/
H A DTextureBuilder.cxx334 typedef map<TexTuple, observer_ptr<T> > TexMap; typedef in simgear::TexBuilder
335 TexMap texMap;
344 typename TexMap::iterator itr = texMap.find(attrs); in build()
799 typedef map<TexTuple, observer_ptr<Texture3D> > TexMap; typedef in simgear::Texture3DBuilder
800 TexMap texMap;
808 typename TexMap::iterator itr = texMap.find(attrs); in build()
/dports/games/openclonk/openclonk-release-8.1-src/src/editor/
H A DC4ConsoleCocoa.mm306 // Get/Create TexMap entry
/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_00_dxf_low_level_structs/
H A DXRECORD_1.bin76 …I^I^I^I^I^I</Bincy>^MȑaxRpCȑtmapParameters>^M^Jrac绽t﷽﷽��ȱȑiȑ^I^I^I^I^I^I<TexMap/EȑluȑOutputy"/>ȑt>…
/dports/cad/py-ezdxf/ezdxf-0.16.3/integration_tests/data/
H A DXRECORD_1.bin76 …I^I^I^I^I^I</Bincy>^MȑaxRpCȑtmapParameters>^M^Jrac绽t﷽﷽��ȱȑiȑ^I^I^I^I^I^I<TexMap/EȑluȑOutputy"/>ȑt>…
/dports/math/geogram/geogram-1.7.7/src/examples/geogram/boolean_operations/
H A DB.obj91 # vorpaline modules=devel;TexMap;RayTracing
H A DA.obj91 # vorpaline modules=devel;TexMap;RayTracing
/dports/games/openclonk/openclonk-release-8.1-src/docs/
H A Dde.po16489 …als and textures as defined in <emlink href=\"material/index.html#TexMaptxt\">TexMap.txt</emlink>."
16490 …ndizes entsprechen den in <emlink href=\"material/index.html#TexMaptxt\">TexMap.txt</emlink> zugeo…
17043 msgid "Texture. The material-texture combination should be defined in the active TexMap."
17044 msgstr "Textur. Die Material-Textur-Kombination sollte in der geladenen TexMap vorhanden sein."
18559 msgid "<img height=\"16\" src=\"../../images/icon_text.png\" width=\"16\"/>TexMap.txt"
18560 msgstr "<img height=\"16\" src=\"../../images/icon_text.png\" width=\"16\"/>TexMap.txt"
18573 msgid "The engine will draw materials in the order they are defined in the TexMap file, irrespectiv…
18577 …age 'texture n undefined' you should define the specified texture in the TexMap. You should always…
18578 …iniert.\" abgelehnt wird, kann dies durch definieren der Textur n in der TexMap behoben werden. Gr…