mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-03 04:06:45 +02:00
* use new media loading backend through MediaLibrary * Inspector3D: new overlay UI that displays and allows to manipulate MediaLibrary content
9 lines
272 B
JavaScript
9 lines
272 B
JavaScript
.pragma library
|
|
|
|
|
|
function intToString(v) {
|
|
// use EN locale to get comma separated thousands
|
|
// + remove automatically added trailing decimals
|
|
// (this 'toLocaleString' does not take any option)
|
|
return v.toLocaleString(Qt.locale('en-US')).split('.')[0]
|
|
}
|