Skip to content

Commit cfd7877

Browse files
committed
refactor
1 parent 31a127d commit cfd7877

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ public MeshExtractOptions(PlateauVector3d referencePoint, CoordinateSystem meshA
9090
this.AttachMapTile = attachMapTile;
9191
this.MapTileZoomLevel = mapTileZoomLevel;
9292
this.mapTileURL = mapTileURL;
93-
this.epsgCode = epsgCode;
94-
this.highestLodOnly = highestLodOnly;
93+
this.EpsgCode = epsgCode;
94+
this.HighestLodOnly = highestLodOnly;
9595

9696
// 上で全てのメンバー変数を設定できてますが、バリデーションをするため念のためメソッドやプロパティも呼びます。
9797
SetLODRange(minLOD, maxLOD);
@@ -226,10 +226,10 @@ public string MapTileURL
226226
}
227227
}
228228

229-
public int epsgCode;
229+
public int EpsgCode;
230230

231231
[MarshalAs(UnmanagedType.U1)]
232-
public bool highestLodOnly;
232+
public bool HighestLodOnly;
233233

234234
/// <summary> デフォルト値の設定を返します。 </summary>
235235
internal static MeshExtractOptions DefaultValue()

0 commit comments

Comments
 (0)