Re: [Interest] Qt3D : QSceneLoader - determining scene level geometry bounding box

2022-08-08 Thread Nicholas Yue
} walkEntity(entity, depth + 1); } } } ``` On Sat, 6 Aug 2022 at 00:09, Mike Krus wrote: > the computations are done a background thread, you may have to wait 1 > frame before they are valid. > Or call QBoundingVolume::updateImplicitBounds() before reading them. &

Re: [Interest] Qt3D : QSceneLoader - determining scene level geometry bounding box

2022-08-05 Thread Nicholas Yue
Any insight ? On Wed, 3 Aug 2022 at 15:44, Nicholas Yue wrote: > I have the following code > > ``` > void SceneWalker::walkEntity(Qt3DCore::QEntity *e, int depth) > { > Qt3DCore::QNodeVector nodes = e->childNodes(); > for (int i = 0; i < nodes.count(); ++i)

Re: [Interest] Qt3D : QSceneLoader - determining scene level geometry bounding box

2022-08-03 Thread Nicholas Yue
loading > is asynchronous), you can use > QSceneLoader::entity() to get a loaded entity by name, and then > QEntity::componentsOfType() to get the component. > Loaded entities are children of the entity that the QSceneLoader component > was assigned to, and components and > en

Re: [Interest] Qt3D : QSceneLoader - determining scene level geometry bounding box

2022-08-02 Thread Nicholas Yue
at the root and the > same properties will be updated. > > In Qt5, the QGeometry node associated with each render has similar min/max > properties (note that they only valid if the mesh uses all the geometry). > > Hope this helps, > > Mike > > > > On 1 Aug

[Interest] Qt3D : QSceneLoader - determining scene level geometry bounding box

2022-08-01 Thread Nicholas Yue
StringLiteral("Open a scene file")); } else { sourceFileName = QUrl::fromLocalFile(args[1]); } if (sourceFileName.isEmpty()) return 0; sceneLoader->setSource(sourceFileName); view.setRootEntity(sceneRoot); view.show(); return app.exec(); } ``` Cheers -- Nicholas Yue https://www.linkedin.com/in/nicholasyue/ ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Qt5.15 from source on centOS 7

2022-06-17 Thread Nicholas Yue
> > Interest@qt-project.org > > https://lists.qt-project.org/listinfo/interest > > > ___ > Interest mailing list > Interest@qt-project.org > https://lists.qt-project.org/listinfo/interest > -- Nicholas Yue https://www.linkedin.com/in/nicholasyue/ ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] QSvgGenerator : Path attribute

2021-08-15 Thread Nicholas Yue
190, 190 ) ); p1.quadTo(QPointF(190, 10 ),QPointF(10,10) ); p1.moveTo(50,50); p1.quadTo(QPointF( 150, 50 ),QPointF( 150, 150 ) ); p1.quadTo(QPointF(50, 150 ),QPointF(50,50) ); painter.fillPath(p1, thrusterColor); painter.end(); } ``` On Sun, 15 Aug 2021 at 10:32, Ni

[Interest] QSvgGenerator : Path attribute

2021-08-15 Thread Nicholas Yue
Hi, I would like to generate SVG via QSvgGenerator with additional attribute to the path object ``` ``` Where should we be adding such attributes e.g. fill, fill-rule, so that QSvgGenerator will embed them in the generated SVG file ? Cheers -- Nicholas Yue https://www.linkedin.com/in

[Interest] PySide2 : Adding widget to a QVBoxLayout in a QScrollArea

2021-07-12 Thread Nicholas Yue
, 300, 150) self.setWindowTitle('Buttons') self.show() def main(): app = QtWidgets.QApplication(sys.argv) ex = Example() ex.show() sys.exit(app.exec_()) if __name__ == '__main__': main() Cheers -- Nicholas Yue https://www.linkedin.com/in/nicholasyue/ __

Re: [Interest] PySide2 : QHBoxLayout content sizing

2021-07-11 Thread Nicholas Yue
heir true content. > > Regards, Tony > > > On 12/07/2021 7:27 am, Nicholas Yue wrote: > > Hi, > > I have a horizontal layout, self.viewHorizontalLayout > > I am adding the following items > > # Inputs/View/Outputs panel > self.ui_inputs = Qt

[Interest] PySide2 : QHBoxLayout content sizing

2021-07-11 Thread Nicholas Yue
f.ui_outputs so that later on, when I do add items to them, it does not pop in size to accommodate the additional content ? Cheers -- Nicholas Yue https://www.linkedin.com/in/nicholasyue/ ___ Interest mailing list Interest@qt-project.org https://lists.qt-

Re: [Interest] QNetwork classes for submitting google forms

2021-06-12 Thread Nicholas Yue
I figured it out, QNetworkAccessManager networkManager; needs to be a member of the class (not within the doSubmit() method), otherwise it would have gone out of scope before the reply returns Cheers On Sat, 12 Jun 2021 at 10:29, Nicholas Yue wrote: > I have now moved the c

Re: [Interest] QNetwork classes for submitting google forms

2021-06-12 Thread Nicholas Yue
urn" here and let your slot be called when the time is > right. > > > > Right, too much Python lately... "should" have been `processEvents()` > which is when I realized there were no events to process w/out a Qt loop > in the first place. Returning from main(

Re: [Interest] QNetwork classes for submitting google forms

2021-06-11 Thread Nicholas Yue
Manager::finished, ... > > -Max > _______ > Interest mailing list > Interest@qt-project.org > https://lists.qt-project.org/listinfo/interest > -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting,

[Interest] QNetwork classes for submitting google forms

2021-06-11 Thread Nicholas Yue
der, //"application/x-www-form-urlencoded"); QNetworkAccessManager networkManager; QNetworkReply* reply; reply = networkManager.post(request, postData.toString(QUrl::FullyEncoded).toUtf8()); QVariant statusCode = reply->attribute( QNetworkRequest::HttpStatu

[Interest] wasm build of Qt 6.1.x ?

2021-06-07 Thread Nicholas Yue
required wasm_shell.html was not installed in the expected place by qmake. I had a look at Qt 6.1.1 release notes hoping to find out if there was any mention of wasm/webassembly but did not see any. Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting

[Interest] QML TextField control - completer ?

2021-06-05 Thread Nicholas Yue
Hi, In widget approach for QLineEdit, one can associate a QCompleter with it. In QML, is there a way to have completion assistance for a TextField control ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http

[Interest] Webassembly and qt3d

2021-06-05 Thread Nicholas Yue
: 3dextras 3dcore 3drender 3dinput 3dquick 3dquickextras ``` Should I consider Qt 6.x i.e. it is definitely supported in the latest version ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in

Re: [Interest] QML MenuBar : works with PySide2 but not c++ ?

2021-06-02 Thread Nicholas Yue
e Qt QML examples? How is your C++ code different to those? > > Hope that helps, Tony > > > On 3/06/2021 11:33 am, Nicholas Yue wrote: > > Hi, > > I am learning about QML. > > I would like to find out why the PySide2 loading of the QML file results > in a

[Interest] QML MenuBar : works with PySide2 but not c++ ?

2021-06-02 Thread Nicholas Yue
ore.QUrl.fromLocalFile('MenuBar.qml') engine.load(url) if not engine.rootObjects(): sys.exit(-1) sys.exit(app.exec_()) -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholas

[Interest] Qt Creator : .qml and .ui.qml files

2021-05-31 Thread Nicholas Yue
, the Qt Creator created files do not have a ui.qml, just the qml files. Are ui.qml files important as QML projects get larger/more-complex ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in

[Interest] QOpenGLWindow inside QSplitter horizontal layout ?

2021-05-20 Thread Nicholas Yue
plitter->layout()->addWidget(w); #endif } ``` Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools ___ Int

[Interest] Qt Designer Plugin : QOpenGLWindow

2021-05-19 Thread Nicholas Yue
from QWindow and not QWidget ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools ___ Interest mailing list

Re: [Interest] QFileDialog and wasm sandbox security

2021-05-15 Thread Nicholas Yue
Answering my own email. I found this and it worked. https://wiki.qt.io/Qt_for_WebAssembly#Files_and_local_file_system_access Cheers On Sat, 15 May 2021 at 17:32, Nicholas Yue wrote: > Hi, > > Given the sandbox security of WASM, application only have access to the > virtua

[Interest] QFileDialog and wasm sandbox security

2021-05-15 Thread Nicholas Yue
/practice I can deploy ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools ___ Interest mailing list

[Interest] QClipboard - wasm

2021-05-06 Thread Nicholas Yue
tps://wiki.qt.io/Qt_for_WebAssembly I am hosting the example on an HTTPS server and connecting it via Chrome and Firefox, both of which the clipboard does not get the updates. Any suggestions? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting,

[Interest] QPlainTextEdit - word wrap column setting ?

2021-05-06 Thread Nicholas Yue
Hi, Is there a way to set the maximum allowable columns e.g. set to 80, and when the user try to type pass that column, the word is automatically wrapped to the next line to allow the user to continue ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C

[Interest] Using QOpenGLWindow within a MainWindow ?

2021-05-03 Thread Nicholas Yue
solely by itself ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools ___ Interest mailing list Interest@qt

Re: [Interest] How to use QOpenGLWidget from Qt Creator

2021-05-03 Thread Nicholas Yue
ernal UI files to be > available to the application... or if this is a one-time sort of issue. > My point being that you may be better off using plugins to being with, > since dynamically loading UI files has very limited functionality. > > Cheers, > -Max > > (Please reply to

Re: [Interest] How to use QOpenGLWidget from Qt Creator

2021-05-03 Thread Nicholas Yue
h you probably don't need to do). > See: > > > https://stackoverflow.com/questions/58714879/my-custom-widget-is-not-shown-in-qt-creator-qt-designer-but-it-is-shown-when-i > > https://stackoverflow.com/questions/23275909/adding-widgets-to-qt-designer > > > HTH, > -Max

[Interest] How to use QOpenGLWidget from Qt Creator

2021-05-02 Thread Nicholas Yue
-- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools ___ Interest mailing list Interest@qt-project.org https://lists.qt

[Interest] QClipboard : wasm/browser restriction ?

2021-05-02 Thread Nicholas Yue
"); } This works for compiled applications as an *.exe but I notice that it does not work when I build it as a WASM package. I believe this is likely due to security/sandbox reasons. Any recommendation of possible solution for the wasm use case ? Cheers -- Nicholas Yue Graphics - Arnol

[Interest] Language and translator : Learning and questions

2021-05-02 Thread Nicholas Yue
// qApp->removeTranslator(&ui_translator); bool installed = qApp->installTranslator(&ui_translator); if (installed) { this->retranslateUi(); } } } void MainWindow::retranslateUi() { ui_label = findChild("label");

[Interest] Loading files from qrc, path or URL ?

2021-05-01 Thread Nicholas Yue
Hi, Learning about QtCreator, I see that one may obtain a Path or URL to a resource. When loading files (via e.g. c++) a resource what is the difference ? i.e. which should one use as a best practice ? [image: image.png] Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL

Re: [Interest] Call retranslateUi() from UI generated/loaded directly from *.ui

2021-04-30 Thread Nicholas Yue
ed method by uic > > It should automatically react to language change events, see: > > https://doc.qt.io/qt-6/quiloader.html#setLanguageChangeEnabled > > Regards, Friedemann > > -- > > Friedemann Kleint > The Qt Company GmbH > > ___ > Interest mailing list >

[Interest] How to get QMainWindow derived window to show

2021-04-30 Thread Nicholas Yue
/QtQuestions/blob/main/Qt5/language_change/mainwindow/MainWindow.cpp The examples and documentation I found focuses on Form/Widget but not MainWindow Any advice ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http

[Interest] Language file resource loaded but UI not updating

2021-04-29 Thread Nicholas Yue
ug() << "HELLO WORLD"; bool installed = qApp->installTranslator(&translator); if (installed) { loadLanguage("German"); } qDebug() << "installed = " << installed;

[Interest] Call retranslateUi() from UI generated/loaded directly from *.ui

2021-04-29 Thread Nicholas Yue
*Form) In my situation, how should I retranslate my UI ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools

[Interest] qmake (wasm) : qtlogo.svg

2021-04-29 Thread Nicholas Yue
Hi, When building a Qt app with qmake that was build as WASM, it generate a corresponding *.html which references the qtlogo.svg file cme.html: Is there some option in the *.pro I can specify to tell qmake to use a different SVG file instead? Cheers -- Nicholas Yue Graphics

Re: [Interest] Locale detection of Qt application hosted via WASM

2021-04-28 Thread Nicholas Yue
Thank you Thorsten for the insight :-) On Wed, 28 Apr 2021 at 09:55, Thorsten Glaser wrote: > On Wed, 28 Apr 2021, Nicholas Yue wrote: > > > I am new to locale handling in general and definitely new to locale on > the > > web browser. > > If you’re targetting a we

[Interest] Locale detection of Qt application hosted via WASM

2021-04-28 Thread Nicholas Yue
t; std::endl; if (QLocale::system().name().startsWith("de_")) { if (translator.load(":/language/.qm/cme_de.qm")) { app.installTranslator(&translator); } else { std::cerr << "ERROR: Translation failure to load" << std::endl; } } CMEForm cme; cme.show();

[Interest] Embedding language translation as resource

2021-04-26 Thread Nicholas Yue
r_lang.qrc ** hellotr_la.ts hellotr_la.ts * QPushButton Hello world! hellotr,pro SOURCES = main.cpp TRANSLATIONS = hellotr_la.ts target.path = $$[QT_INSTALL_EXAMPLES]/linguist/hellotr INSTALLS += target QT += widgets

Re: [Interest] Qt6 : QPA qxcb - Ubuntu 20.04 dev libraries dependencies

2021-01-26 Thread Nicholas Yue
: > Hi Nicholas, > > On 24.01.21 18:42, Nicholas Yue wrote: > >I am troubleshooting the failure to configure Qt6 qxcb for building > > on Ubuntu 20.04 > > > >A number of sites I saw references 18.04 which I tried to adapt but > > to no avail. > >

[Interest] Qt6 : QPA qxcb - Ubuntu 20.04 dev libraries dependencies

2021-01-24 Thread Nicholas Yue
Hi, I am troubleshooting the failure to configure Qt6 qxcb for building on Ubuntu 20.04 A number of sites I saw references 18.04 which I tried to adapt but to no avail. Anyone know of the canonical list of dependencies required to build Qt6 with qxcb on Ubuntu 20.04 ? Cheers -- Nicholas

Re: [Interest] Qt6 : linguist + *.ts files creation

2021-01-23 Thread Nicholas Yue
ation system has features that may be useful for other things as > well. I'd highly recommend reading the whole Internationalization > section of the Qt docs: > https://doc.qt.io/Qt-5/internationalization.html > > HTH, > -Max > > > On 1/23/2021 12:05 PM, Nicholas

[Interest] Qt6 : linguist + *.ts files creation

2021-01-23 Thread Nicholas Yue
Hi, I am starting to learn more about supporting multiple languages. I had a browse through the following URL https://wiki.qt.io/How_to_create_a_multi_language_application If I am not using qmake + *.pro files, how are the initial *_.ts files created? Cheers -- Nicholas Yue Graphics

Re: [Interest] QPA display system query ?

2021-01-19 Thread Nicholas Yue
more easily and was better with Qml. > > > > *From:* Interest *On Behalf Of *Nicholas > Yue > *Sent:* January 18, 2021 11:13 PM > *To:* Thiago Macieira > *Cc:* interest@qt-project.org > *Subject:* Re: [Interest] QPA display system query ? > > > > T

Re: [Interest] QPA display system query ?

2021-01-18 Thread Nicholas Yue
8 Jan 2021 at 19:12, Thiago Macieira wrote: > On Monday, 18 January 2021 16:15:23 PST Giuseppe D'Angelo via Interest > wrote: > > Hi, > > > > Il 19/01/21 00:33, Nicholas Yue ha scritto: > > > Is there some command line query I can make to determine the QPA >

Re: [Interest] How to use Qt6::qmake ?

2021-01-18 Thread Nicholas Yue
_______ > Interest mailing list > Interest@qt-project.org > https://lists.qt-project.org/listinfo/interest > -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vi

Re: [Interest] QPA display system query ?

2021-01-18 Thread Nicholas Yue
Thanks for your reply Giuseppe. I will extract the "xcb" from the output of qtdiag. Cheers On Mon, 18 Jan 2021 at 16:18, Giuseppe D'Angelo via Interest < interest@qt-project.org> wrote: > Hi, > > Il 19/01/21 00:33, Nicholas Yue ha scritto: > > Is there s

[Interest] QPA display system query ?

2021-01-18 Thread Nicholas Yue
Hi, Is there some command line query I can make to determine the QPA display system that is being used? For example, running that command on e.g. an Ubuntu box may return something like *xcb* Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting

Re: [Interest] How to use Qt6::qmake ?

2021-01-18 Thread Nicholas Yue
> > Regards > > > > Kai > > > > *From:* Interest *On Behalf Of *Nicholas > Yue > *Sent:* Monday, January 18, 2021 6:02 AM > *To:* interest@qt-project.org > *Subject:* [Interest] How to use Qt6::qmake ? > > > > Hi, > > > > I would lik

[Interest] How to use Qt6::qmake ?

2021-01-17 Thread Nicholas Yue
Hi, I would like to use qmake within a CMake build with the following find_package(Qt6 COMPONENTS CoreTools UiTools LinguistTools Widgets OpenGL OpenGLWidgets REQUIRED CONFIG) execute_process(Qt6::qmake OUTPUT_VARIABLE qmake_stdout ) How ever, the following reports that Qt6::qmake is

Re: [Interest] How to pass parameter from Menu/Action to SLOT()

2021-01-05 Thread Nicholas Yue
ou can call this: > > QAction *actionP(qobject_cast(QObject::sender())); > > > and you'll get the action that caused the sending. > you can have previously stuffed something interesting into the objectName > of the action, then recover it in your handler > > does t

[Interest] How to pass parameter from Menu/Action to SLOT()

2021-01-05 Thread Nicholas Yue
connect(specialistMenuAction[specialistMenuActionIndex], SIGNAL(triggered()), this, SLOT(specialistMenuHandler())); } } : : } ``` ``` void MainWindow::specialistMenuHandler() { std::cout << "MainWindow::specialistMenuHandler()" << std::endl; } ``` Cheers -- Nicholas Yue

[Interest] Qt 6.0.0 build on Windows 10 - Perl related error ?

2020-12-29 Thread Nicholas Yue
\quicktest.cpp.obj ninja: build stopped: subcommand failed. Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools __

Re: [Interest] QImage family of classes - image bucket

2020-12-17 Thread Nicholas Yue
gh, maybe you should do a rendering into a framebuffer of each > layer with a different z. That would make the rendering very easy and super > fast on GPU. > > > > After you could put the result into a QImage or QPixmap. > > > > > > *From:* Interest *On Behalf O

[Interest] QImage family of classes - image bucket

2020-12-16 Thread Nicholas Yue
where I can write those rectangular buckets of pixels individually ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools

[Interest] Qt6 - Making Qt installer package for Windows, Linux and OS X

2020-12-08 Thread Nicholas Yue
about bundle/fixupbundle, I was wondering with the release of Qt6 and CMake being the default build system, if there is any improvement/streamline of the process. Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http

[Interest] Qt webassembly

2020-07-07 Thread Nicholas Yue
Hi, Is there any pre-build version of Qt which can produce webassembly code? Preferably on Linux. I wish to learn and experiment with what Qt can create for *.wasm but lack the resources to build a WebAssembly version of Qt from source. Cheers -- Nicholas Yue Graphics - Arnold, Alembic

Re: [Interest] Getting QGraphicsView from within a mouse event

2020-06-16 Thread Nicholas Yue
Thanks Giuseppe, Got it working. Cheers On Mon, 15 Jun 2020 at 02:46, Giuseppe D'Angelo wrote: > Il 15/06/20 03:26, Nicholas Yue ha scritto: > > The return widget object does not have a viewport() method from looking > > at the QWidget - docs <https://doc.

Re: [Interest] Getting QGraphicsView from within a mouse event

2020-06-14 Thread Nicholas Yue
t->widget(); } else QGraphicsItem::mousePressEvent(event); } On Sun, 14 Jun 2020 at 17:22, Giuseppe D'Angelo via Interest < interest@qt-project.org> wrote: > Il 15/06/20 00:50, Nicholas Yue ha scritto: > > Hi, > > > >I understand that a QGraphicsS

[Interest] Getting QGraphicsView from within a mouse event

2020-06-14 Thread Nicholas Yue
Hi, I understand that a QGraphicsScene may be view by multiple QGraphicsView When handling a mouse event, what is the Qt way to find out from which view the event was from ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux

[Interest] QGraphicsItem constructor access to scene

2020-06-08 Thread Nicholas Yue
;) fm = QtGui.QFontMetrics(font) Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools ___ Interest mailing list

[Interest] Building Qt 5.15 on Ubuntu 20.04

2020-05-27 Thread Nicholas Yue
-- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools ___ Interest mailing list Interest@qt-project.org https://lists.qt

[Interest] Adding new 3D geometry support to Qt3D?

2019-07-05 Thread Nicholas Yue
(Alembic) that follows Qt3D best practices so that I can concentrate on the geometry and leverage the other aspect like material/shading that is already part of Qt3D Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http