Fix build
parent
bd358d4de7
commit
0d45d65b98
|
@ -507,8 +507,8 @@ bool GenericRigger::rig()
|
||||||
|
|
||||||
void GenericRigger::normalizeButtonColumns()
|
void GenericRigger::normalizeButtonColumns()
|
||||||
{
|
{
|
||||||
int minColumn = std::numeric_limits<int>::max();
|
double minColumn = std::numeric_limits<int>::max();
|
||||||
int maxColumn = std::numeric_limits<int>::min();
|
double maxColumn = std::numeric_limits<int>::min();
|
||||||
for (const auto &bone: m_resultBones) {
|
for (const auto &bone: m_resultBones) {
|
||||||
if (!bone.hasButton)
|
if (!bone.hasButton)
|
||||||
continue;
|
continue;
|
||||||
|
@ -517,7 +517,7 @@ void GenericRigger::normalizeButtonColumns()
|
||||||
if (bone.button.second > maxColumn)
|
if (bone.button.second > maxColumn)
|
||||||
maxColumn = bone.button.second;
|
maxColumn = bone.button.second;
|
||||||
}
|
}
|
||||||
int columnNumOfOneSide = std::max(std::abs(minColumn), std::abs(maxColumn));
|
int columnNumOfOneSide = (int)std::max(std::abs(minColumn), std::abs(maxColumn));
|
||||||
for (auto &bone: m_resultBones) {
|
for (auto &bone: m_resultBones) {
|
||||||
if (!bone.hasButton)
|
if (!bone.hasButton)
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
#include "documentwindow.h"
|
#include "documentwindow.h"
|
||||||
#include "theme.h"
|
#include "theme.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
//#include "fbxdocument.h"
|
|
||||||
|
|
||||||
int main(int argc, char ** argv)
|
int main(int argc, char ** argv)
|
||||||
{
|
{
|
||||||
|
@ -49,9 +48,5 @@ int main(int argc, char ** argv)
|
||||||
|
|
||||||
SkeletonDocumentWindow::createDocumentWindow();
|
SkeletonDocumentWindow::createDocumentWindow();
|
||||||
|
|
||||||
//fbx::FBXDocument fbxDoc;
|
|
||||||
//fbxDoc.read("/Users/jeremy/Desktop/test.fbx");
|
|
||||||
//fbxDoc.print();
|
|
||||||
|
|
||||||
return app.exec();
|
return app.exec();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue