|
- function makePlants() {
- const results = [];
-
- results.push(
- makeHeight(
- [
- ["sycamore-tree", 35, "meters"],
- ["pine-tree", 43, "meters"],
- ["palm-tree", 25, "meters"],
- ],
- "Trees",
- "",
- "plants"
- )
- );
-
- results.push(
- makeModel({
- name: "Grass",
- kind: "plants",
- forms: [
- {
- name: "Short Blades",
- views: [
- { name: "Front", height: 0.06, bottom: 0.015 },
- ],
- },
- {
- name: "Tall Blades",
- views: [
- { name: "Front", height: 0.12, bottom: 0.015 },
- ],
- },
- {
- name: "Lawn",
- views: [
- { name: "Front", height: 0.0825 },
- ],
- },
- ],
- })
- );
-
- /* ***INSERT HERE*** */
-
- results.sort((b1, b2) => {
- return b1.name.localeCompare(b2.name);
- });
- return results;
- }
|