Skip to content

Commit dd4e68b

Browse files
committed
C#libでTestが通らなくなるのでudxのパス変更
1 parent 1f3ff96 commit dd4e68b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

data/日本語パステスト/udx/tile_test/52353548_tran_6697_op.gml renamed to data/日本語パステスト/tile_test/tran/52353548_tran_6697_op.gml

File renamed without changes.

data/日本語パステスト/udx/tile_test/52353549_tran_6697_op.gml renamed to data/日本語パステスト/tile_test/tran/52353549_tran_6697_op.gml

File renamed without changes.

test/test_tile_extractor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace plateau::polygonMesh {
2121

2222
TEST_F(TileExtractorTest, extract_with_grid) { // NOLINT
2323

24-
const std::string gml_path = u8"../data/日本語パステスト/udx/tile_test/52353549_tran_6697_op.gml";
24+
const std::string gml_path = u8"../data/日本語パステスト/tile_test/tran/52353549_tran_6697_op.gml";
2525
const std::shared_ptr<const CityModel> city_model = load(gml_path, params_);
2626

2727
// zoomLevel 11の場合のグリッド分割
@@ -69,8 +69,8 @@ namespace plateau::polygonMesh {
6969
mesh_extract_options.highest_lod_only = true;
7070
mesh_extract_options.grid_count_of_side = 1;
7171

72-
const std::string gml_path1 = u8"../data/日本語パステスト/udx/tile_test/52353548_tran_6697_op.gml";
73-
const std::string gml_path2 = u8"../data/日本語パステスト/udx/tile_test/52353549_tran_6697_op.gml";
72+
const std::string gml_path1 = u8"../data/日本語パステスト/tile_test/tran/52353548_tran_6697_op.gml";
73+
const std::string gml_path2 = u8"../data/日本語パステスト/tile_test/tran/52353549_tran_6697_op.gml";
7474
const std::shared_ptr<const CityModel> city_model1 = load(gml_path1, params_);
7575
const std::shared_ptr<const CityModel> city_model2 = load(gml_path2, params_);
7676

wrappers/csharp/LibPLATEAU.NET/CSharpPLATEAU/PolygonMesh/MeshExtractOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public float UnitScale
153153
get => this.unitScale;
154154
set
155155
{
156-
if (Math.Abs(this.UnitScale) < 0.00000001)
156+
if (Math.Abs(value) < 0.00000001)
157157
{
158158
throw new ArgumentException($"Validate failed : {nameof(this.UnitScale)} is too small.");
159159
}

0 commit comments

Comments
 (0)