-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i-UR 関係のモデルのモジュールなどを少し整理する。一旦 #70 に対してマージする。
- Loading branch information
Showing
12 changed files
with
58 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
pub mod landslide; | ||
pub mod underground_building; | ||
pub mod utility_network; | ||
pub mod city_furniture; | ||
pub mod urban_object; | ||
//! i-UR (i-Urban Revitalization) Urban Planning ADE | ||
//! | ||
pub use landslide::SedimentDisasterProneArea; | ||
pub use underground_building::UndergroundBuilding; | ||
pub mod urf; | ||
pub mod uro; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//! Urban Object Module | ||
mod landslide; | ||
|
||
pub use landslide::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
//! Urban Object Module | ||
mod city_furniture; | ||
mod common; | ||
mod other_construction; | ||
mod underground_building; | ||
mod utility_network; | ||
|
||
pub use city_furniture::*; | ||
pub use common::*; | ||
pub use other_construction::*; | ||
pub use underground_building::*; | ||
// pub use utility_network::*; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters