License delivery maintenance is planned for Saturday, July 26, between 12:00 and 20:00 CEST. During this time, you may experience outages or limited availability across our services, including BIMcloud SaaS, License Delivery, Graphisoft ID (for customer and company management), Graphisoft Store, and BIMx Web Viewer. More details…
a month ago - last edited a month ago
Hi,everyone:
In ArchiCad:
In my Render System:
It is obvious that the size of the texture is inconsistent(Ignore color).
I'm pretty sure the exported texture file is fine, so I think it's a UV issue.
//texture
API_TexCoordPars pars = { 0 };
pars.elemIdx = elemIdx;
pars.bodyIdx = bodyIdx;
pars.pgonIndex = j;
//
pars.surfacePoint.x = backCo.x;
pars.surfacePoint.y = backCo.y;
pars.surfacePoint.z = backCo.z;
err = ACAPI_ModelAccess_GetTextureCoord(&pars, &resultUV);
if (err == NoError)
uv.push_back({ resultUV.u, resultUV.v });
Solved! Go to Solution.
4 weeks ago
if (err == NoError)
uv.push_back({ resultUV.u / xSize, resultUV.v / ySize });
It seems that the following actions need to be taken.But the xSize/ySize I get can not produce the correct effect.
4 weeks ago
if (err == NoError)
uv.push_back({ resultUV.u / xSize, resultUV.v / ySize });
It seems that the following actions need to be taken.But the xSize/ySize I get can not produce the correct effect.
3 weeks ago