Open CASCADE学习|一个点的坐标变换

gp_Trsf 类是 Open CASCADE Technology (OCCT) 软件库中的一个核心类,用于表示和操作三维空间中的变换。以下是该类的一些关键成员和方法的介绍:

成员变量:

scale: Standard_Real 类型,表示变换的缩放因子。

shape: gp_TrsfForm 类型,定义变换的形式,如平移、旋转等。

matrix: gp_Mat 类型,是一个 3x3 矩阵,表示变换的矢量部分,包括缩放。

loc: gp_XYZ 类型,表示变换的平移部分。

方法:

gp_Trsf(): 构造函数,创建一个默认的变换(通常是单位变换)。

SetMirror(const gp_Pnt& theP): 设置关于点的对称变换。

SetRotation(const gp_Ax1& theA1, const Standard_Real theAng): 设置绕轴线的旋转变换。

SetRotation(const gp_Quaternion& theR):设置使用四元数定义的旋转变换。

SetRotationPart(const gp_Quaternion& theR): 替换变换的旋转部分。

SetScale(const gp_Pnt& theP, const Standard_Real theS): 设置缩放变换。

SetDisplacement(const gp_Ax3& theFromSystem1, const gp_Ax3& theToSystem2): 设置从一个坐标系统到另一个坐标系统的变换。

SetTransformation(const gp_Ax3& theFromSystem1, const gp_Ax3& theToSystem2): 设置两个坐标系统之间的变换。

SetTransformation(const gp_Quaternion& R, const gp_Vec& theT): 通过指定的旋转和位移直接设置变换。

SetTranslation(const gp_Vec& theV): 设置向量平移变换。

SetTranslation(const gp_Pnt& theP1, const gp_Pnt& theP2): 设置通过两个点确定的向量平移变换。

SetTranslationPart(const gp_Vec& theV):替换变换的平移部分。

SetScaleFactor(const Standard_Real theS): 修改缩放因子。

SetValues(...): 直接设置变换矩阵的系数。

IsNegative(): 检查变换的行列式是否为负。

Form(): 获取变换的形式。

ScaleFactor(): 获取缩放因子。

TranslationPart(): 获取平移部分。

GetRotation(gp_XYZ& theAxis, Standard_Real& theAngle): 获取旋转轴和角度。

GetRotation(): 获取表示旋转部分的四元数。

VectorialPart(): 获取变换的矢量部分。

HVectorialPart(): 获取变换的齐次矢量部分。

Value(const Standard_Integer theRow, const Standard_Integer theCol): 获取变换矩阵的元素。

Invert(): 求变换的逆。

Inverted(): 返回变换的逆。

Multiplied(const gp_Trsf& theT): 与另一个变换相乘。

operator *(const gp_Trsf& theT): 重载乘法运算符。

Multiply(const gp_Trsf& theT): 将当前变换与另一个变换相乘。

PreMultiply(const gp_Trsf& theT): 将另一个变换与当前变换相乘。

Power(const Standard_Integer theN): 对变换进行求幂操作。

Powered(const Standard_Integer theN): 返回变换的幂。

Transforms(Standard_Real& theX, Standard_Real& theY, Standard_Real& theZ): 应用变换到一个点。

Transforms(gp_XYZ& theCoord): 应用变换到一个 gp_XYZ 对象。

GetMat4(NCollection_Mat4<T>& theMat): 将变换转换为 4x4 矩阵。

DumpJson(Standard_OStream& theOStream, Standard_Integer theDepth): 将变换内容输出为 JSON 格式。

InitFromJson(const Standard_SStream& theSStream, Standard_Integer& theStreamPos): 从 JSON流初始化变换。

#include <BRepBuilderAPI_MakeVertex.hxx>
#include <TopoDS_Vertex.hxx>
#include <BRepBuilderAPI_Transform.hxx>
#include <BRep_Tool.hxx>
#include <TopoDS.hxx>
​
int main(int argc, char* argv[])
{gp_Mat M;gp_Vec V;gp_Trsf dv;//默认是恒等变换gp_Trsf myTrsf;//默认是恒等变换gp_Pnt p0(3,4, 5);//待变换的点dv.SetValues(1, 0, 0, 1,0, 1, 0, 2,0, 0, 1, 3);//平移变换
​dv.Multiply(myTrsf);//变换矩阵相乘//通过API进行坐标变换TopoDS_Shape out = BRepBuilderAPI_Transform(BRepBuilderAPI_MakeVertex(p0), dv, Standard_True); //copyTopoDS_Vertex anVertex = TopoDS::Vertex(out);gp_Pnt p1 = BRep_Tool::Pnt(anVertex);//通过公式进行坐标变换Standard_Real x = p0.X() * dv.Value(1, 1) + p0.Y() * dv.Value(1, 2) + p0.Z() * dv.Value(1, 3) + dv.Value(1, 4);Standard_Real y = p0.X() * dv.Value(2, 1) + p0.Y() * dv.Value(2, 2) + p0.Z() * dv.Value(2, 3) + dv.Value(2, 4);Standard_Real z = p0.X() * dv.Value(3, 1) + p0.Y() * dv.Value(3, 2) + p0.Z() * dv.Value(3, 3) + dv.Value(3, 4);//打印坐标变换结果std::cout <<  "x=" << x <<"  " << "y=" << y << "  " << "z=" << z << "  " << std::endl;std::cout << "p1.X()=" << p1.X() << "  " << "p1.Y()=" << p1.Y() << "  " << "p1.Z()=" << p1.Z() << "  " << std::endl;return 0;
}
​

x=4y=6  z=8

p1.X()=4p1.Y()=6  p1.Z()=8

以下代码首先创建了一个三维点,然后创建了一个 gp_Trsf 变换对象,并分别设置了旋转、平移和缩放变换。每次变换后,代码都打印出变换后的点的坐标。

#include <gp_Trsf.hxx>
#include <gp_Pnt.hxx>
#include <gp_Ax1.hxx>
​
int main() {// 创建一个点gp_Pnt point(1.0, 2.0, 3.0);std::cout << "Original point: " << point.X() << ", " << point.Y() << ", " << point.Z() << std::endl;
​// 创建一个变换对象gp_Trsf transformation;
​// 设置一个旋转变换,绕 Z 轴旋转 PI/2 弧度(90 度)gp_Ax1 axis(gp_Pnt(0, 0, 0), gp_Dir(0, 0, 1));transformation.SetRotation(axis, M_PI / 2);
​// 应用变换到点gp_Pnt transformedPoint = point.Transformed(transformation);std::cout << "Transformed point after rotation: " << transformedPoint.X() << ", "<< transformedPoint.Y() << ", " << transformedPoint.Z() << std::endl;
​// 设置一个平移变换,沿着 X 轴移动 5 个单位transformation.SetTranslation(gp_Vec(5, 0, 0));
​// 再次应用变换到点transformedPoint = point.Transformed(transformation);std::cout << "Transformed point after translation: " << transformedPoint.X() << ", "<< transformedPoint.Y() << ", " << transformedPoint.Z() << std::endl;
​// 设置一个缩放变换,缩放因子为 2,中心为点 (1, 1, 1)gp_Pnt scaleCenter(1, 1, 1);transformation.SetScale(scaleCenter, 2.0);
​// 应用变换到点transformedPoint = point.Transformed(transformation);std::cout << "Transformed point after scaling: " << transformedPoint.X() << ", "<< transformedPoint.Y() << ", " << transformedPoint.Z() << std::endl;
​return 0;
}
​

Original point: 1, 2, 3

Transformed point after rotation: -2, 1, 3

Transformed point after translation: 6, 2, 3

Transformed point after scaling: 1, 3, 5

       

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/651094.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

利用Spring Boot后端与Vue前端技术构建现代化电商平台

作者介绍&#xff1a;✌️大厂全栈码农|毕设实战开发&#xff0c;专注于大学生项目实战开发、讲解和毕业答疑辅导。 &#x1f345;获取源码联系方式请查看文末&#x1f345; 推荐订阅精彩专栏 &#x1f447;&#x1f3fb; 避免错过下次更新 Springboot项目精选实战案例 更多项目…

【程序分享1】LAMMPS + OVITO + 晶体缺陷识别 + 点缺陷 + 分子动力学模拟

分享2个分子动力学模拟相关的程序。 1. 一种识别体心立方晶体缺陷的新方法。 2. 无后处理的分子动力学模拟中的并行点缺陷识别: lammps的计算和转储方式 。 感谢论文的原作者&#xff01; 第1个程序 关键词&#xff1a; 1. Atomistic simulations, 2. Molecular dynamics…

JSON六种值类型的写法

JSON&#xff08;JavaScript Object Notation&#xff09;是一种人类可读的文本数据格式。它源于JavaScript&#xff0c;标准开放&#xff0c;格式要求更为严格&#xff0c;独立于具体编程语言&#xff0c;常用于数据交换。 列举一段JSON数据&#xff0c;解释JSON六种值类型的…

网络安全实训Day22

网络空间安全实训-渗透测试 CSRF 定义&#xff1a;跨站伪造请求攻击 攻击者透过诱骗受害者点击攻击者提前构造的恶意链接&#xff0c;从而以受害者的身份向网站服务器发起请求&#xff0c;达到攻击的目的 通过CSRF在网站后台创建管理员 1.搭建创建管理员账号的站点 1.将对方网…

中国大模型落地应用案例集(2023)(医疗、教育、金融、科技、汽车、遥感等52个领域)

近日&#xff0c;中国信通院联合上海人工智能实验室成立的大模型测试验证与协同创新中心牵头&#xff0c;首次面向全国范围征集全行业优秀应用实践&#xff0c;并形成《2023大模型落地应用案例集》&#xff08;以下简称“《案例集》”&#xff09;。 《案例集》一共119页pdf&am…

C语言笔试题之重排链表

重排链表 实例要求 1、给定一个单链表 L 的头节点 head &#xff0c;单链表 L 表示为&#xff1a; L0 → L1 → … → Ln - 1 → Ln2、请将其重新排列后变为&#xff1a; L0 → Ln → L1 → Ln - 1 → L2 → Ln - 2 → …3、不能只是单纯的改变节点内部的值&#xff0c;而是…

鸿蒙OpenHarmony【轻量系统 编译】 (基于Hi3861开发板)

编译 OpenHarmony支持hb和build.sh两种编译方式。此处介绍hb方式&#xff0c;build.sh脚本编译方式请参考[使用build.sh脚本编译源码]。 使用build.sh脚本编译源码 进入源码根目录&#xff0c;执行如下命令进行版本编译。 ./build.sh --product-name name --ccache 说明&…

02.Scala简单演示

Scala创建对象的方法与Java有所不同 class可以直接传入形参&#xff1b; 形式为 变量名称&#xff1a;变量类型 逗号隔开 ** ** 方法定义也比较特殊 ** ** def方法名&#xff08;&#xff09;:返回值 { } 其中返回值Unit 等价于Java中的void

文献速递:肺癌早期诊断---低剂量胸部计算机断层扫描上的三维深度学习端到端肺癌筛查

Title 题目 End-to-end lung cancer screening with three-dimensional deep learning on low-dose chest computed tomography 低剂量胸部计算机断层扫描上的三维深度学习端到端肺癌筛查 01文献速递介绍 2018年估计有160,000例死亡病例&#xff0c;肺癌是美国最常见的癌症…

【Leetcode】vector刷题

&#x1f525;个人主页&#xff1a;Quitecoder &#x1f525;专栏&#xff1a;Leetcode刷题 目录 1.只出现一次的数字2.杨辉三角3.删除有序数组中的重复项4.只出现一次的数字II5.只出现一次的数字III6.电话号码的字母组合 1.只出现一次的数字 题目链接&#xff1a;136.只出现一…

Kafka 3.x.x 入门到精通(05)——对标尚硅谷Kafka教程

Kafka 3.x.x 入门到精通&#xff08;05&#xff09;——对标尚硅谷Kafka教程 2. Kafka基础2.1 集群部署2.2 集群启动2.3 创建主题2.4 生产消息2.5 存储消息2.6 消费消息2.6.1 消费消息的基本步骤2.6.2 消费消息的基本代码2.6.3 消费消息的基本原理2.6.3.1消费者组2.6.3.1.1 消费…

C语言----单链表的实现

前面向大家介绍了顺序表以及它的实现&#xff0c;今天我们再来向大家介绍链表中的单链表。 1.链表的概念和结构 1.1 链表的概念 链表是一种在物理结构上非连续&#xff0c;非顺序的一种存储结构。链表中的数据的逻辑结构是由链表中的指针链接起来的。 1.2 链表的结构 链表…