- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个像这样的 Qt3D 网格:
Qt3DCore::QEntity *newEntity = new Qt3DCore::QEntity();
Qt3DExtras::QConeMesh *mesh =new Qt3DExtras::QConeMesh();
mesh->setTopRadius(0.2);
mesh->setBottomRadius(1.0);
mesh->setLength(2.0);
for(int i = 0; i < mesh->geometry()->attributes().size(); ++i) {
mesh->geometry()->attributes().at(i)->buffer()->setSyncData(true); // To have access to data
}
newEntity->addComponent(mesh);
创建的网格如下所示:
<小时/>在代码的后面,我尝试将上述网格导出到STL binary format中。为此,我提取实体的几何和变换组件:
Qt3DCore::QComponent *compoMesh = nullptr; // place holder for mesh geometry of entity
Qt3DCore::QComponent *compoTran = nullptr; // place holder for mesh transformation of entity
QVector<Qt3DCore::QComponent *> compos = newEntity->components();
for(int i = 0; i < compos.size(); ++i) {
if (qobject_cast<Qt3DRender::QGeometryRenderer *>(compos.at(i))) {
compoMesh = compos.at(i); // mesh geometry component
} else if (qobject_cast<Qt3DCore::QTransform *>(compos.at(i))) {
compoTran = compos.at(i); // mesh transformation component
}
}
然后我获取包含顶点位置和法线的缓冲区数据:
Qt3DRender::QGeometryRenderer *mesh = qobject_cast<Qt3DRender::QGeometryRenderer *>(compoMesh);
Qt3DRender::QGeometry *geometry = mesh->geometry();
QVector<Qt3DRender::QAttribute *> atts = geometry->attributes();
现在,我们关注顶点位置属性和顶点法线属性。我们获取每个字节的字节偏移和字节跨度,同时检查两者是否使用相同的数据缓冲区:
for(int i = 0; i < atts.size(); ++i) {
if(atts.at(i)->name() == Qt3DRender::QAttribute::defaultPositionAttributeName()) {
byteOffsetPos = atts.at(i)->byteOffset();
byteStridePos = atts.at(i)->byteStride();
bufferPtrPos = atts.at(i)->buffer();
} else if(atts.at(i)->name() == Qt3DRender::QAttribute::defaultNormalAttributeName()) {
byteOffsetNorm = atts.at(i)->byteOffset();
byteStrideNorm = atts.at(i)->byteStride();
bufferPtrNorm = atts.at(i)->buffer();
}
}
if(bufferPtrPos != bufferPtrNorm) {
qDebug() << __func__ << "!!! Buffer pointer for position and normal are NOT the same";
// Throw error here
}
然后我使用字节偏移和字节步长提取三角形并将它们写入STL文件。然而导出的 STL 并不好:
<小时/>我使用相同的代码导出自定义网格的 STL,效果很好。但是,当我使用相同的代码导出 Qt3D 现成网格时,如 QConeMesh
,导出的 STL 是 Not Acceptable 。有人可以给我提示吗?
正如 @vre 所指出的,我将发布将三角形写入 STL 文件的其余代码。这是一个很大的代码,我尽力保持清晰简洁:
为了获取三角形位置和法线,我循环属性并获取 VertexBuffer
存储所有位置和法线的缓冲区:
// I loop over attributes to get access to VertexBuffer buffer
for(int i = 0; i < atts.size(); ++i) {
Qt3DRender::QBuffer *buffer = atts.at(i)->buffer();
QByteArray data = buffer->data();
// We focus on VertexBuffer, NOT IndexBuffer!
if( buffer->type() == Qt3DRender::QBuffer::VertexBuffer ) {
// Number of triangles is number of vertices divided by 3:
quint32 trianglesCount = atts.at(i)->count() / 3;
// For each triangle, extract vertex positions and normals
for(int j = 0; j < trianglesCount; ++j) {
// Index for each triangle positions data
// Each triangle has 3 vertices, hence 3 factor:
// We already know byte-offset and byte-stride for positions
int idxPos = byteOffsetPos + j * 3 * byteStridePos ;
// Index for each triangle normals data
// Each tirangle has 3 normals (right?), hence 3 factor:
// We already know byte-offset and byte-stride for normals
int idxNorm = byteOffsetNorm + j * 3 * byteStrideNorm;
// Get x, y, z positions for 1st vertex
// I have already checked that attribute base type is float by: `atts.at(i)->vertexBaseType();`
QByteArray pos0x = data.mid(idxPos + 0 * sizeof(float), sizeof(float));
QByteArray pos0y = data.mid(idxPos + 1 * sizeof(float), sizeof(float));
QByteArray pos0z = data.mid(idxPos + 2 * sizeof(float), sizeof(float));
// Get x, y z for 1st normal
QByteArray norm0x= data.mid(idxNorm + 0 * sizeof(float), sizeof(float));
QByteArray norm0y= data.mid(idxNorm + 1 * sizeof(float), sizeof(float));
QByteArray norm0z= data.mid(idxNorm + 2 * sizeof(float), sizeof(float));
// Get x, y, z positions for 2nd vertex
QByteArray pos1x = data.mid(idxPos + 1 * byteStridePos + 0 * sizeof(float), sizeof(float));
QByteArray pos1y = data.mid(idxPos + 1 * byteStridePos + 1 * sizeof(float), sizeof(float));
QByteArray pos1z = data.mid(idxPos + 1 * byteStridePos + 2 * sizeof(float), sizeof(float));
// Get x, y, z for 2nd normal
QByteArray norm1x= data.mid(idxNorm + 1 * byteStrideNorm + 0 * sizeof(float), sizeof(float));
QByteArray norm1y= data.mid(idxNorm + 1 * byteStrideNorm + 1 * sizeof(float), sizeof(float));
QByteArray norm1z= data.mid(idxNorm + 1 * byteStrideNorm + 2 * sizeof(float), sizeof(float));
// Get x, y, z positions for 3rd vertex
QByteArray pos2x = data.mid(idxPos + 2 * byteStridePos + 0 * sizeof(float), sizeof(float));
QByteArray pos2y = data.mid(idxPos + 2 * byteStridePos + 1 * sizeof(float), sizeof(float));
QByteArray pos2z = data.mid(idxPos + 2 * byteStridePos + 2 * sizeof(float), sizeof(float));
// Get x, y, z for 3rd normal
QByteArray norm2x= data.mid(idxNorm + 2 * byteStrideNorm+ 0 * sizeof(float), sizeof(float));
QByteArray norm2y= data.mid(idxNorm + 2 * byteStrideNorm+ 1 * sizeof(float), sizeof(float));
QByteArray norm2z= data.mid(idxNorm + 2 * byteStrideNorm+ 2 * sizeof(float), sizeof(float));
// Convert x, y, z byte arrays into floats
float floatPos0x;
if ( pos0x.size() >= sizeof(floatPos0x) ) {
floatPos0x = *reinterpret_cast<const float *>( pos0x.data() );
}
float floatPos0y;
if ( pos0y.size() >= sizeof(floatPos0y) ) {
floatPos0y = *reinterpret_cast<const float *>( pos0y.data() );
}
float floatPos0z;
if ( pos0z.size() >= sizeof(floatPos0z) ) {
floatPos0z = *reinterpret_cast<const float *>( pos0z.data() );
}
// Do the rest of byte-array to float conversions:
// norm0x=>floatNorm0x, norm0y=>floatNorm0y, norm0z=>floatNorm0z
// pos1x=>floatPos1x, pos1y=>floatPos1y, pos1z=>floatPos1z
// norm1x=>floatNorm1x, norm1y=>floatNorm1y, norm1z=>floatNorm1z
// pos2x=>floatPos2x, pos2y=>floatPos2y, pos2z=>floatPos2z
// norm2x=>floatNorm2x, norm2y=>floatNorm2y, norm2z=>floatNorm2z
// Compose positions matrix before applying transformations
// I'm going to use `QMatrix4x4` but I have 3 vertices of 3x1
// Therefore I have to fill out `QMatrix4x4` with zeros and ones
// Please see this question and its answer: https://stackoverflow.com/q/51979168/3405291
QMatrix4x4 floatPos4x4 = QMatrix4x4(
floatPos0x, floatPos1x, floatPos2x, 0,
floatPos0y, floatPos1y, floatPos2y, 0,
floatPos0z, floatPos1z, floatPos2z, 0,
1 , 1 , 1 , 0
);
// Apply transformations to positions:
// We already have transformations component `compoTran` from previous code:
Qt3DCore::QTransform *tran = qobject_cast<Qt3DCore::QTransform *>(compoTran);
QMatrix4x4 newFloatPos4x4 = tran->matrix() * floatPos4x4;
// Get new positions after applying transformations:
float newFloatPos0x = newFloatPos4x4(0,0);
float newFloatPos0y = newFloatPos4x4(1,0);
float newFloatPos0z = newFloatPos4x4(2,0);
float newFloatPos1x = newFloatPos4x4(0,1);
float newFloatPos1y = newFloatPos4x4(1,1);
float newFloatPos1z = newFloatPos4x4(2,1);
float newFloatPos2x = newFloatPos4x4(0,2);
float newFloatPos2y = newFloatPos4x4(1,2);
float newFloatPos2z = newFloatPos4x4(2,2);
// Convert all the floats (after applying transformations) back to byte array:
QByteArray newPos0x( reinterpret_cast<const char *>( &newFloatPos0x ), sizeof( newFloatPos0x ) );
QByteArray newPos0y( reinterpret_cast<const char *>( &newFloatPos0y ), sizeof( newFloatPos0y ) );
QByteArray newPos0z( reinterpret_cast<const char *>( &newFloatPos0z ), sizeof( newFloatPos0z ) );
QByteArray newPos1x( reinterpret_cast<const char *>( &newFloatPos1x ), sizeof( newFloatPos1x ) );
QByteArray newPos1y( reinterpret_cast<const char *>( &newFloatPos1y ), sizeof( newFloatPos1y ) );
QByteArray newPos1z( reinterpret_cast<const char *>( &newFloatPos1z ), sizeof( newFloatPos1z ) );
QByteArray newPos2x( reinterpret_cast<const char *>( &newFloatPos2x ), sizeof( newFloatPos2x ) );
QByteArray newPos2y( reinterpret_cast<const char *>( &newFloatPos2y ), sizeof( newFloatPos2y ) );
QByteArray newPos2z( reinterpret_cast<const char *>( &newFloatPos2z ), sizeof( newFloatPos2z ) );
// Log triangle vertex positions and normals (float numbers)
// A sample log is posted on this question on StackOverflow
qDebug() << __func__ << " pos 0: x " << newFloatPos0x << " y " << newFloatPos0y << " z " << newFloatPos0z;
qDebug() << __func__ << " pos 1: x " << newFloatPos1x << " y " << newFloatPos1y << " z " << newFloatPos1z;
qDebug() << __func__ << " pos 2: x " << newFloatPos2x << " y " << newFloatPos2y << " z " << newFloatPos2z;
qDebug() << __func__ << " norm 0: x " << floatNorm0x << " y " << floatNorm0y << " z " << floatNorm0z;
qDebug() << __func__ << " norm 1: x " << floatNorm1x << " y " << floatNorm1y << " z " << floatNorm1z;
qDebug() << __func__ << " norm 2: x " << floatNorm2x << " y " << floatNorm2y << " z " << floatNorm2z;
// Write the triangle to STL file
// Note that STL file needs a header which is written in another section of code
// Note that STL file needs total number of triangles which is written in another section of code
// Note that STL file needs only one normal vector for each triangle, but here we have 3 normals (for 3 vertices), therefore I'm writing only the 1st normal to STL (is it OK?!)
// `baStl` is a byte-array containing all the STL data
// `baStl` byte-array is written to a file in another section of the code
QBuffer tempBuffer(&baStl);
tempBuffer.open(QIODevice::Append);
tempBuffer.write( norm0x ); // vertex 0 Normal vector
tempBuffer.write( norm0y );
tempBuffer.write( norm0z );
tempBuffer.write( newPos0x ); // New vertex 0 position
tempBuffer.write( newPos0y );
tempBuffer.write( newPos0z );
tempBuffer.write( newPos1x ); // New vertex 1 position
tempBuffer.write( newPos1y );
tempBuffer.write( newPos1z );
tempBuffer.write( newPos2x ); // New vertex 2 position
tempBuffer.write( newPos2y );
tempBuffer.write( newPos2z );
tempBuffer.write("aa"); // Attribute byte count: UINT16: 2 bytes: content doesn't matter, just write 2 bytes
tempBuffer.close();
}
}
}
上面的代码非常适合自定义网格。我的意思是,当我将 STL 文件导入到 Qt3D 应用程序中,然后再次将其导出为 STL 时,导出的 STL 很好。问题是:创建 Qt3D 现成网格时,如 QConeMesh
,导出的STL搞砸了,我的意思是整体几何形状没问题,但三角形困惑,如上图所示。
我的代码在尝试导出 QConeMesh
时记录以下值。可以看出,法线向量具有单位大小,这表明它们实际上是法线:
...exportStlUtil pos 0: x -10.6902 y -7.55854 z 4.76837e-07exportStlUtil pos 1: x -12.8579 y -4.31431 z 2.98023e-07exportStlUtil pos 2: x -13.6191 y -0.487476 z 5.96046e-08exportStlUtil norm 0: x -0.707107 y 0 z 0.707107exportStlUtil norm 1: x -0.92388 y 0 z 0.382683exportStlUtil norm 2: x -1 y 0 z -8.74228e-08exportStlUtil pos 0: x -12.8579 y 3.33936 z -1.19209e-07exportStlUtil pos 1: x -10.6902 y 6.58359 z -3.57628e-07exportStlUtil pos 2: x -7.44594 y 8.75132 z -4.76837e-07exportStlUtil norm 0: x -0.92388 y 0 z -0.382683exportStlUtil norm 1: x -0.707107 y 0 z -0.707107exportStlUtil norm 2: x -0.382683 y 0 z -0.92388exportStlUtil pos 0: x -3.61911 y 9.51252 z -4.76837e-07exportStlUtil pos 1: x 0.207723 y 8.75132 z -4.76837e-07exportStlUtil pos 2: x 3.45196 y 6.58359 z -3.57628e-07exportStlUtil norm 0: x 1.19249e-08 y 0 z -1exportStlUtil norm 1: x 0.382684 y 0 z -0.923879exportStlUtil norm 2: x 0.707107 y 0 z -0.707107exportStlUtil pos 0: x 5.61968 y 3.33936 z -1.19209e-07exportStlUtil pos 1: x 6.38089 y -0.487479 z 5.96046e-08exportStlUtil pos 2: x 6.38089 y -0.487477 z 0.133333exportStlUtil norm 0: x 0.92388 y 0 z -0.382683exportStlUtil norm 1: x 1 y 0 z 1.74846e-07exportStlUtil norm 2: x 1 y 0 z 0exportStlUtil pos 0: x 5.61968 y -4.31431 z 0.133334exportStlUtil pos 1: x 3.45195 y -7.55854 z 0.133334exportStlUtil pos 2: x 0.207721 y -9.72627 z 0.133334exportStlUtil norm 0: x 0.92388 y 0 z 0.382683exportStlUtil norm 1: x 0.707107 y 0 z 0.707107exportStlUtil norm 2: x 0.382683 y 0 z 0.92388...
最佳答案
重新表述我的评论作为答案:
Qt3D默认几何体主要由至少两个缓冲区组成,vertexBuffer包含顶点、纹理坐标以及法线,indexBuffer包含形成三角形或triangleStrips的索引。要访问 vertexBuffer 中的顶点或法线,您首先要从 indexBuffer 中查找三个连续索引的序列,并考虑 vertexSize、byteStride 和 byteOffset 来计算 vertexBuffer 中的偏移量。
要访问布局 [vertexCoords、textureCoords、normalCoords]
的 vertexBuffer 中的 vertexCoord posx(GeometryRenderer 为 PrimitiveType Triangles),vertexBufferIndex 的计算将为:
vertexBufPtr + indexBuffer(i) * byteStride + byteOffsetPos
以及第一个法线坐标
vertexBufPtr + indexBuffer(i) * byteStride + byteOffsetNormal
。
byteStride 等于 8 * sizeof(float),byteOffsetPos 等于 0,byteOffsetNormal 等于 5 * sizeof(float)。
关于qt - 了解 Qt3D 创建的网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52039817/
我正在使用 Qt 语言学家翻译一个 ui 文件。我使用 lupdate 获取了它的 ts 文件,并翻译了这些单词和短语。现在我想将它添加到我的代码中,但我从它的教程中发现我似乎必须将 tr() 添加到
我想在 Qt Creator 中创建下面的简单控制台应用程序: #include int main(int argc, char* argv[]) { std::cout #include
我想将 libQtGui.so.4 libQtNetwork.so.4 和 libQtCore.so.4 包含在与我的应用程序所在的目录相同的目录中。我如何让 Qt 理解这一点? y 目的是拥有一个使
我有一个充满 QPushButtons 和 QLabels 以及各种其他有趣的 QWidget 的窗口,所有这些都使用各种 QLayout 对象动态布局...而我想做的是偶尔制作一些这些小部件变得不可
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 7 年前。 Improve
我想知道 Qt 是否将下面代码的“版本 1”之类的东西放在堆上?在版本 1 中,Qt 会将 dirStuff 放在堆栈上还是堆上?我问是因为我有一种感觉,Java 将所有数据结构放在堆上......不
这个问题是关于 Qt Installer Framework 2.0 版的。 在这一点上,使用 Qt 安装程序框架的人都知道,如果不进行自定义,您根本无法通过安装程序覆盖现有安装。这样做显然是为了解决
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
因为我在我的计算机上安装了 Qt 4.8.4 和 Qt 5.1,所以我遇到了问题。 当只有 Qt 4.8.4 存在时,一切都很好。 当我添加 Qt 5.1 时,这个工作正常,但 Qt 4.8.4 给了
我无法在我的 Ubuntu 12 中安装更多软件包。我尝试了 apt-get install -f ,以及许多其他类似的技巧,但在找到解决方案方面没有进展。 这是属于 Qt 的损坏包: 以下包具有未满
我正在尝试使用 Virtual Box 中的 Ubuntu 机器复制我们目前在物理 Ubuntu 服务器上运行的应用程序。它是一个 QT 应用程序,但在服务器上我们使用 NPM 的 pm2 运行它。安
问题: Qt Creator 是用 Qt Creator 构建的吗? 同样,Qt Designer 是用 Qt Designer 构建的吗? 顺便说一句,为什么有两个 Qt IDE?他们是竞争对手吗?
当我使用 QWidget设计用户界面时,我总是对它的大小属性有点困惑。有size policy , geometry和 hintSize . 我只知道size policy之间的关系和 hintSiz
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我想知道是否有一种很好的方法可以让用户像 LabView 一样创建节点图(有限制)。 像这样的东西: 我见过http://www.pyqtgraph.org/ ,这似乎有类似的东西,我确实打算使用 P
在 Qt 中是否有一种跨平台的方式来获得用户喜欢的固定宽度和比例字体? 例如,在 cocoa 中,有 NSFont *proportional = [NSFont userFontOfSize:12.
我想使用 Qt 和 C++ 制作这样的交互式图表:http://jsxgraph.uni-bayreuth.de/wiki/index.php/Cubic_spline_interpolation 关
我正在编写一个嵌入式设备屏幕的模拟(其中包含主 QWidget 顶部的自定义小部件),虽然屏幕的原始尺寸是 800x600,但我希望能够按比例放大和缩小它拖动窗口的角。如果不使用网格布局和担架(不会向
在下面的示例中,我是否必须从堆中删除对象?如果是的话,怎么办? #include #include #include #include #include int main(int argc,
来自 Web 开发背景,我现在进入 QT 应用程序开发。 使用 QFonts 我已经看到我显然只有两个选择,在 QT 中定义字体大小;按像素大小或点大小。 在制作网页布局时,我习惯于以相对方式定义所有
我是一名优秀的程序员,十分优秀!