基準平面の「基点、X,Y,Z軸方向」を取得する

Get an origin point and Axes of a plane.

 

メモ|Note

  • Grasshopperでは一つのコンポーネントで原点と各軸が取得できるが、Dynamoではそれぞれ別のノードに分かれている。

 

スクリプト|Script

Python DesignScript Syntax
原点:plane.Origin

X軸:plane.XAxis

Y軸:plane.YAxis

Z軸:plane.ZAxis

原点:plane.Origin

X軸:plane.XAxis

Y軸:plane.YAxis

Z軸:plane.Normal

※planeは変数

 

索引|Index

Grasshopper Dynamo
[Vectors > Plane > Deconstruct Plane] [Geometry > Abstract > Plane > Origin]

 

[Geometry > Abstract > Plane > XAxis]

 

[Geometry > Abstract > Plane > YAxis]

 

[Geometry > Abstract > Plane > Normal]

 

 

コメントを残す

メールアドレスが公開されることはありません。

次の記事

数値を加算する