Warning, /education/gcompris/src/activities/comparator/resource/9/Data.qml is written in an unsupported language. File is not indexed.

0001  /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2022 Johnny Jazeix <jazeix@gmail.com>
0004  *
0005  * Authors:
0006  *   Johnny Jazeix <jazeix@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 
0011 import GCompris 1.0
0012 
0013 Data {
0014     objective: qsTr("2 decimal places between 0 and 99.99.")
0015     difficulty: 6
0016 
0017     data: [
0018         {
0019             random: true,
0020             numberOfSublevels: 5,
0021             maxDistanceBetweenNumbers: 0.5,
0022             precision: 0.01,
0023             minValue: 0.0,
0024             maxValue: 99.99,
0025             numberOfEquations: 5
0026         },
0027         {
0028             random: true,
0029             numberOfSublevels: 5,
0030             maxDistanceBetweenNumbers: 1,
0031             precision: 0.01,
0032             minValue: 0.0,
0033             maxValue: 99.99,
0034             numberOfEquations: 5
0035         }
0036     ]
0037 }
0038