-
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.
#283 の一部 - TreeFlattening transformerのオプションを再構成しました - (合わせて、前の実装だと `All`, `AllExceptThematicSurfaces` で同じ動作になってしまっていたところが直りました) *** - feature, data, object と3種類に対して、それぞれフラット化のオプションを指定したい - featureはall, dataはnone, objectはallなど - 直交で選択肢が増える - `AllFeaturesExceptThematicSurfacesAndAllData` などとしたくない - enumをネストさせてみました - flatteningのオプションが定義される場所 - `flatten.rs` - これが、 `builder.rs` から再度外へ提示される - なので、sinkから使えるようになる *** - 実際の、Data, Objectのflattening処理は、この次のPRで行う予定です - その前にまずは、この構成・方向性について、みていただけますでしょうか! <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **新機能** - ツリーの平坦化オプションを特定し、柔軟なデータ変換を実現 - 異なる平坦化オプションに関する新しい列挙型を導入しました <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Taku Fukada <[email protected]>
- Loading branch information
Showing
5 changed files
with
103 additions
and
35 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
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,7 +1,7 @@ | ||
mod appearance; | ||
mod attrname; | ||
mod dots; | ||
mod flatten; | ||
pub mod flatten; | ||
mod geommerge; | ||
mod jsonify; | ||
mod lods; | ||
|