Farm plot #4

Closed
opened 2024-06-13 18:16:17 -05:00 by cha0s · 1 comment
Owner
No description provided.
cha0s added this to the MVP milestone 2024-06-13 18:23:24 -05:00
Author
Owner
  // Seeds.
  const projection = {
    distance: [1, -1],
    grid: [
      [1, 1, 1],
      [1, 1, 1],
      [1, 1, 1],
    ],
  };
  // Tool lv. 1
  const projection = {
    distance: [1, 0],
    grid: [
      [1],
    ],
  };
  // Tool lv. 2
  const projection = {
    distance: [3, 0],
    grid: [
      [1],
      [1],
      [1],
    ],
  };
  // Tool lv. 3
  const projection = {
    distance: [3, -1],
    grid: [
      [1, 1, 1],
      [1, 1, 1],
      [1, 1, 1],
    ],
  };
``` // Seeds. const projection = { distance: [1, -1], grid: [ [1, 1, 1], [1, 1, 1], [1, 1, 1], ], }; // Tool lv. 1 const projection = { distance: [1, 0], grid: [ [1], ], }; // Tool lv. 2 const projection = { distance: [3, 0], grid: [ [1], [1], [1], ], }; // Tool lv. 3 const projection = { distance: [3, -1], grid: [ [1, 1, 1], [1, 1, 1], [1, 1, 1], ], }; ```
cha0s closed this issue 2024-07-05 20:32:43 -05:00
Sign in to join this conversation.
No Label
Dev
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: cha0s/silphius#4
No description provided.