Warning, /education/gcompris/src/activities/comparator/resource/10/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("3 decimal places between 0 and 999.999.")
0015 difficulty: 6
0016
0017 data: [
0018 {
0019 random: true,
0020 numberOfSublevels: 5,
0021 maxDistanceBetweenNumbers: 0.05,
0022 precision: 0.001,
0023 minValue: 0.0,
0024 maxValue: 999.999,
0025 numberOfEquations: 5
0026 },
0027 {
0028 random: true,
0029 numberOfSublevels: 5,
0030 maxDistanceBetweenNumbers: 0.5,
0031 precision: 0.001,
0032 minValue: 0.0,
0033 maxValue: 999.999,
0034 numberOfEquations: 5
0035 },
0036 {
0037 random: true,
0038 numberOfSublevels: 5,
0039 maxDistanceBetweenNumbers: 1,
0040 precision: 0.001,
0041 minValue: 0.0,
0042 maxValue: 999.999,
0043 numberOfEquations: 5
0044 }
0045 ]
0046 }
0047