「Acet-geom-point-scale」の版間の差分
(ページの作成:「{{AutoLISP}} ; 構文 : (acet-geom-point-scale ''toPoint'' ''fromPoint'' ''scale'') ; 機能 : fromPoint から toPoint へのベクトルを scale でスケーリングして作成し、fromPoint に適用した点を返す。 ; 引数 :* toPoint … ベクトル先の座標点リスト :* fromPoint … ベクトル元の座標点リスト :* scale … 倍率。NIL の場合、1.0 が使用される。 ; 戻り値 : スケーリングされた座標点リ…」) |
編集の要約なし |
||
31行目: | 31行目: | ||
* [[acet-geom-point-rotate]] | * [[acet-geom-point-rotate]] | ||
* [[acet-geom-point-scale]] | * [[acet-geom-point-scale]] | ||
* [[acet-geom-vector-scale]] | |||
[[Category:AutoLISP]] | [[Category:AutoLISP]] | ||
[[Category:BricsCADのLISP]] | [[Category:BricsCADのLISP]] |
2025年8月14日 (木) 09:13時点における最新版
- 構文
- (acet-geom-point-scale toPoint fromPoint scale)
- 機能
- fromPoint から toPoint へのベクトルを scale でスケーリングして作成し、fromPoint に適用した点を返す。
- 引数
-
- toPoint … ベクトル先の座標点リスト
- fromPoint … ベクトル元の座標点リスト
- scale … 倍率。NIL の場合、1.0 が使用される。
- 戻り値
- スケーリングされた座標点リスト
- サンプル
(acet-geom-point-scale '(100 500) '(0 0 0) 1.5)) (150.0 750.0 0.0)
関連事項