「Civil:pgroups-create」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{BCAD_LISP_CIVIL}} ; 構文 : (Civil:pgroups-create ''name'' ) ; 機能 : 文字列 name で新しい C3D 点グループを作成する。 ; 引数 :* name : 作成される 点グループ名の文字列。 ; 戻り値 : 新しい C3D 点グループのENAME、失敗した場合は nil(無効な名前、またはすでに存在する点グループなど)。 ==== メモ ==== * Civilエンティティを含む図面では、すべてのC3D 点オ…」)
 
編集の要約なし
 
35行目: 35行目:


関連事項
関連事項
* [[civil:get-converter]]
* [[civil:pgroups-create]]
* [[civil:converter-convert]]
* [[civil:pgroups-count]]
* [[civil:converter-attachedlabels]]
* [[civil:pgroups-get]]
* [[civil:converter-unattachedlabels]]
* [[civil:pgroups-get-all]]
* [[civil:converter-release]]
* [[civil:pgroups-get-lastusedpointnumber]]
* [[civil:converter-get-c3d-entities]]
* [[civil:pgroups-get-uniquepointnumber]]
* [[civil:converter-get-c3d-info]]
* [[civil:pgroups-groupswithpoint]]
* [[civil:converter-get-c3d-alignmenttype]]
* [[civil:pgroups-set-lastusedpointnumber]]
* [[civil:converter-get-c3d-profiletype]]
* [[civil:pgroups-remove]]
* [[civil:converter-get-c3d-basealignment]]
* [[civil:pgroups-rename]]
* [[civil:converter-get-c3d-basesurface]]
* [[civil:pgroups-updatepointgroups]]
* [[civil:converter-get-c3d-profiles]]




[[Category:AutoLISP]]
[[Category:AutoLISP]]
[[Category:BricsCADのLISP]]
[[Category:BricsCADのLISP]]

2024年11月14日 (木) 07:46時点における最新版

構文
(Civil:pgroups-create name )


機能
文字列 name で新しい C3D 点グループを作成する。


引数
  • name : 作成される 点グループ名の文字列。


戻り値
新しい C3D 点グループのENAME、失敗した場合は nil(無効な名前、またはすでに存在する点グループなど)。


メモ

  • Civilエンティティを含む図面では、すべてのC3D 点オブジェクトを含む "_All points "という名前の点グループがが常に存在する。


サンプル
(vl-load-civil)
T
(setq res (civil:pgroups-create "NewGroup"))
<Entity name: d992c490>



関連事項