Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4a3843c
Revert "Validation (#383)"
WallanceLee Feb 26, 2026
45d8108
stage
WallanceLee Feb 20, 2026
08a529c
fix: fbx using specular-glossiness and uv-transform
WallanceLee Feb 20, 2026
eb91f9f
refactor: b3dm writer
WallanceLee Feb 24, 2026
b4faf54
refactor: shp23dtile tileset.json to tileset module
WallanceLee Feb 24, 2026
42554da
refactor: shp23dtile tileset.json to tileset module
WallanceLee Feb 24, 2026
7b82462
refactor: osgb23dtile tileset.json to tileset module
WallanceLee Feb 24, 2026
7d11309
refactor: FBXPipeline tileset.json to tileset module
WallanceLee Feb 24, 2026
dd78158
refactor: shapefile
WallanceLee Feb 24, 2026
d4f1e0b
docs: update
WallanceLee Feb 25, 2026
c83494a
refactor: extract common module for fbx
WallanceLee Feb 25, 2026
7f44f9a
test: 关闭cesium地形和阴影
WallanceLee Feb 25, 2026
0d4f586
refactor: fbx
WallanceLee Feb 25, 2026
e5eb3ef
refactor: using smarter pointer
WallanceLee Feb 25, 2026
20e61cc
refactor: namespace
WallanceLee Feb 25, 2026
2d393d0
refactor: namespace
WallanceLee Feb 25, 2026
607fb6e
feature: add cmake build script
WallanceLee Feb 26, 2026
242ca61
refactor: build.rs
WallanceLee Feb 26, 2026
c732a04
docs: update
WallanceLee Feb 26, 2026
477edb3
fix: build.rs
WallanceLee Feb 26, 2026
80ce94e
fix: clippy
WallanceLee Feb 26, 2026
d2c2446
fix
WallanceLee Feb 26, 2026
b2ed273
docs: update
WallanceLee Feb 26, 2026
122501c
fix: fbx texture
WallanceLee Feb 26, 2026
a42f70b
fix: missing headers
WallanceLee Feb 27, 2026
6569a3f
fix: missing headers
WallanceLee Feb 27, 2026
aae457a
fix: missing CMakeLists.txt option
WallanceLee Feb 27, 2026
9fdd77b
refactor: pipeline
WallanceLee Feb 28, 2026
33370ef
refactor: params
WallanceLee Mar 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
/.vscode/compile_commands.json
/compile_commands.json
/.cache/
/build/
/.idea/
/.trae/
.DS_Store

data
output
compile_commands.json
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ endif()

if (WIN32)
target_compile_definitions(_3dtile PRIVATE NOMINMAX WIN32_LEAN_AND_MEAN)
target_compile_options(_3dtile PRIVATE /EHsc)
target_compile_options(_3dtile PRIVATE /bigobj)
target_compile_options(_3dtile PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/Zc:preprocessor>)
target_precompile_headers(_3dtile PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/src/osg_fix.h")
endif()
Expand Down
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "_3dtile"
version = "0.1.0"
authors = ["fanzhenhua <fanzhenhua@superengine.com.cn>"]
authors = ["fanzhenhua <fanzhenhua@superengine.com.cn>", "wallance <halyx@126.com>"]
edition = "2021"

[dependencies]
Expand All @@ -21,6 +21,8 @@ env_logger = "0.11.8"
#

byteorder = "1.2"
thiserror = "2.0.18"

[build-dependencies]
cmake = "0.1"
pkg-config = "0.3"
Loading
Loading