当前位置:网站首页>PolyWorks script development learning notes (III) -treeview advanced operation
PolyWorks script development learning notes (III) -treeview advanced operation
2022-07-03 09:25:00 【zeng31403】
Polyworks Script development learning notes ( 3、 ... and )-TREEVIEW Advanced operation
Move / Order of exchange objects
- Order of moving objects
TREEVIEW FEATURE MOVE ( 1,2 ) Change the index number to 1 and 2 Feature exchange location of
TREEVIEW FEATURE POINT MOVE ( 2,3 ) Change the index number to 2 and 3 Point exchange location of
TREEVIEW DATA MOVE ( 1,2 ) The index number in the data set is 1 and 2 Triangulation point cloud exchange location - Order of moving object groups


Show / Hide objects
- Show / Hide objects
TREEVIEW OBJECT SELECT NONE Clear all selections first
TREEVIEW OBJECT_GROUP SELECT ( “Pt1-3”, “On” ) Select the object group Pt1-3
TREEVIEW OBJECT VIEW HIDE ( ) Hide object groups Pt1-3
perhaps
TREEVIEW OBJECT VIEW RESTORE( ) Hide object groups Pt1-3
Use the SELECT Object methods , You can combine the display / Hide other types of objects .
Ignore / Use object
- Ignore / Use object
Corresponding to Ignore / Use , Objects can be left unused and in normal use
TREEVIEW OBJECT_GROUP SELECT ( “Pt1-3”, “On” ) Select the object group Pt1-3
EDIT OBJECT IGNORE ( ) Select the object set to ignore state
EDIT OBJECT USE ( ) Select the object and set it to use
establish / Delete object
Create and delete feature points
Create points in coordinates
FEATURE PRIMITIVE POINT CREATE ( 2473.0, -983.596, 447.5, “Nominal”, “ spot 7”, )
Create points as empty features
FEATURE POINT CREATE ( “ spot 8” )
Delete feature points : First choose , Delete after , It is also applicable to other deletion operations
TREEVIEW FEATURE SELECT ( 9, “On” ) Select index as 9 Characteristics of
EDIT OBJECT DELETE ( ) DeleteCreate a circle feature
Create digitally , The parameters are (X coordinate ,Y coordinate ,Z coordinate ,I,J,K, radius ,“Nominal”, Circle name Name,)
FEATURE PRIMITIVE CIRCLE CREATE ( 2473.0, -983.596, 447.5, 0.0, 0.0, 1.0, 4.0, “Nominal”, “ round 1”, )Create slot feature
Create digitally , The parameters are
(X coordinate ,Y coordinate ,Z coordinate , Axis direction I, Axis direction J, Axis direction K, Length direction I, Length direction J, Length direction K, length , Width "Nominal", name , )
FEATURE PRIMITIVE SLOT CREATE ( 2473.0, -983.596, 447.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 12.0, 8.0, “Nominal”, “ Slot 1”, )Create face comparison points
Create digitally , The parameters are (X coordinate ,Y coordinate ,Z coordinate , name Name,I,J,K)
MEASURE COMPARISON_POINT SURFACE CREATE NUMERICALLY ( 10.0, 20.0, 30.0, “ Surface point 1”, -0.91, 0.39, 0.00 )Create point features from text files
Import from a text file , The parameters are (txt File full path , Template name here is "Names + Points", Import type "Feature" )
FEATURE PRIMITIVE POINT CREATE FROM_TEXT_FILE ( “D:\1.txt”, “Names + Points”, “Feature” )
边栏推荐
- Hudi quick experience (including detailed operation steps and screenshots)
- Numerical analysis notes (I): equation root
- Internet Protocol learning record
- Tag paste operator (#)
- 用Redis实现分布式锁
- Spark cluster installation and deployment
- LeetCode每日一题(1024. Video Stitching)
- Notes on numerical analysis (II): numerical solution of linear equations
- Database execution error: SQL_ mode only_ full_ group_ by:
- Go language - JSON processing
猜你喜欢
![[point cloud processing paper crazy reading frontier version 10] - mvtn: multi view transformation network for 3D shape recognition](/img/94/2ab1feb252dc84c2b4fcad50a0803f.png)
[point cloud processing paper crazy reading frontier version 10] - mvtn: multi view transformation network for 3D shape recognition

【Kotlin学习】类、对象和接口——定义类继承结构
![[set theory] order relation (chain | anti chain | chain and anti chain example | chain and anti chain theorem | chain and anti chain inference | good order relation)](/img/fd/c0f885cdd17f1d13fdbc71b2aea641.jpg)
[set theory] order relation (chain | anti chain | chain and anti chain example | chain and anti chain theorem | chain and anti chain inference | good order relation)
![[point cloud processing paper crazy reading classic version 13] - adaptive graph revolutionary neural networks](/img/61/aa8d0067868ce9e28cadf5369cd65e.png)
[point cloud processing paper crazy reading classic version 13] - adaptive graph revolutionary neural networks

Just graduate student reading thesis

Trial of the combination of RDS and crawler

2022-2-13 learn the imitation Niuke project - Project debugging skills

【点云处理之论文狂读经典版10】—— PointCNN: Convolution On X-Transformed Points

MySQL installation and configuration (command line version)
![[kotlin puzzle] what happens if you overload an arithmetic operator in the kotlin class and declare the operator as an extension function?](/img/fc/5c71e6457b836be04583365edbe08d.png)
[kotlin puzzle] what happens if you overload an arithmetic operator in the kotlin class and declare the operator as an extension function?
随机推荐
Detailed steps of windows installation redis
LeetCode每日一题(2305. Fair Distribution of Cookies)
Spark 结构化流写入Hudi 实践
[kotlin learning] control flow of higher-order functions -- lambda return statements and anonymous functions
[point cloud processing paper crazy reading frontier version 11] - unsupervised point cloud pre training via occlusion completion
Idea uses the MVN command to package and report an error, which is not available
LeetCode每日一题(2090. K Radius Subarray Averages)
【点云处理之论文狂读经典版10】—— PointCNN: Convolution On X-Transformed Points
Hudi学习笔记(三) 核心概念剖析
LeetCode每日一题(2212. Maximum Points in an Archery Competition)
[point cloud processing paper crazy reading cutting-edge version 12] - adaptive graph revolution for point cloud analysis
LeetCode每日一题(745. Prefix and Suffix Search)
Using Hudi in idea
[point cloud processing paper crazy reading classic version 14] - dynamic graph CNN for learning on point clouds
Spark 概述
Install third-party libraries such as Jieba under Anaconda pytorch
Flink学习笔记(九)状态编程
CATIA automation object architecture - detailed explanation of application objects (I) document/settingcontrollers
Common formulas of probability theory
Flask+supervisor installation realizes background process resident