Tutorial and changed names #57

Merged
kiruma524 merged 25 commits from dev into dev 2021-08-06 13:40:08 +03:00
Showing only changes of commit 99c6d0e14c - Show all commits

View File

@ -40,10 +40,10 @@ fun main(){
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use — (—) instead of -.

Use `—` (—) instead of ` - `.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use — (—) instead of -.

Use `—` (—) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
**We will analyze which basic properties solids have using `box` solid.** **We will analyze which basic properties solids have using `box` solid.**
*Basic properties:* *Basic properties:*
1. `opacity` - It is set in `float`. It takes on values from 0 to 1, which represent percents of solid opacity. It's initial value is 1. 1. `opacity` &mdash; It is set in `float`. It takes on values from 0 to 1, which represent percents of solid opacity. It's initial value is 1.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
2. `color` - It can be specified as `Int`, `String`, or as three `Ubytes`, which represent color in `rgb`. Elementally, the solid will have `green` color. 2. `color` &mdash; It can be specified as `Int`, `String`, or as three `Ubytes`, which represent color in `rgb`. Elementally, the solid will have `green` color.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. 3. `rotation` &mdash; it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` &mdash; pivot around `y axis`, changing `z` &mdash; pivot around `z axis`.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
4. position, which is given by values `x`, `y`, `z`. Initial values are `x = 0`, `y = 0`, `z = 0`. The coordinate system is Cartesian. It's elemental position is this - vertical `y` axis and horizontal `Oxz` plane. 4. position, which is given by values `x`, `y`, `z`. Initial values are `x = 0`, `y = 0`, `z = 0`. The coordinate system is Cartesian. It's elemental position is this &mdash; vertical `y` axis and horizontal `Oxz` plane.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
Let's see how properties are set in solids. Let's see how properties are set in solids.
The `small box` will have elemental values of properties. If you don't set properties, it will have the same `position`, `color`, `rotation`, and `opacity` values. The `small box` will have elemental values of properties. If you don't set properties, it will have the same `position`, `color`, `rotation`, and `opacity` values.
@ -123,7 +123,7 @@ Now, let's see which solids can be visualized:
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
It's scarcely a solid, but it can be visualized, so we mention it. It's scarcely a solid, but it can be visualized, so we mention it.
`polyline` build lines, obviously. Let's take a look at it's work. `polyline` build lines, obviously. Let's take a look at it's work.
`polyline` requires two values - `points`, and `name`: `polyline` requires two values &mdash; `points`, and `name`:
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
* `points` is a `vararg` with `Point3D` type. It takes pairs of points, which you want to connect. * `points` is a `vararg` with `Point3D` type. It takes pairs of points, which you want to connect.
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
It's type is `String`. **This value can be required by any solid; It's type is `String`. **This value can be required by any solid;
@ -148,15 +148,15 @@ polyline(Point3D(30, 20, 10), Point3D(30, -100, 30), Point3D(30, -100, 30), Poin
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
### 2) Box ### 2) Box
First thing which has to be mentioned is that `box` takes four values: `box(x, y, z, name)` First thing which has to be mentioned is that `box` takes four values: `box(x, y, z, name)`
* `x` - x-axis length of the `box` * `x` &mdash; x-axis length of the `box`
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
* `y` - y-axis length of the `box` * `y` &mdash; y-axis length of the `box`
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
* `z` - z-axis length of the `box` * `z` &mdash; z-axis length of the `box`
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
These values have `Float` type. These values have `Float` type.
*`x`, `y`, and `z` are necessary values, which cannot be ignored. You have to set them.* *`x`, `y`, and `z` are necessary values, which cannot be ignored. You have to set them.*
* `name` - `box`'es identifier. You've already met it. * `name` &mdash; `box`'es identifier. You've already met it.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
Let's create just usual `box` with equal ribs. Let's create just usual `box` with equal ribs.
@ -264,9 +264,9 @@ It takes in six values: `bottomRadius`, `height`, `upperRadius`, `startAngle`, `
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
As it takes such values as `upperRadius`, `startAngle`, `angle`, `cone` can build not only usual cones, but also cone segments. Initially, `upperRadius` will have `0.0` value, `startAngle` - `0f`, `angle` - `PI2`, so if you don't set them, you'll get just a simple cone. As it takes such values as `upperRadius`, `startAngle`, `angle`, `cone` can build not only usual cones, but also cone segments. Initially, `upperRadius` will have `0.0` value, `startAngle` &mdash; `0f`, `angle` &mdash; `PI2`, so if you don't set them, you'll get just a simple cone.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
Setting `upperRadius`, you make a frustum cone, since it sets a radius of the upper base of a cone. Set `startAngle`, and `angle` let to cut off segments by planes perpendicular to the base. `startAngle` - an angle, starting with which segment will be left, `angle` - an angle of cone, which will be set from `startAngle`. Setting `upperRadius`, you make a frustum cone, since it sets a radius of the upper base of a cone. Set `startAngle`, and `angle` let to cut off segments by planes perpendicular to the base. `startAngle` &mdash; an angle, starting with which segment will be left, `angle` &mdash; an angle of cone, which will be set from `startAngle`.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
Let's build a classic cone: Let's build a classic cone:
```kotlin ```kotlin
@ -307,7 +307,7 @@ cone(60, 100, 20, PI*3/4, angle = PI/3, name = "cone") {
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
This solid is set by seven values:`bottomOuterRadius`, `bottomInnerRadius`, `height`, `topOuterRadius`, `topInnerRadius`, `startAngle`, and `angle`. This solid is set by seven values:`bottomOuterRadius`, `bottomInnerRadius`, `height`, `topOuterRadius`, `topInnerRadius`, `startAngle`, and `angle`.
In addition to `height`, `startAngle`, and `angle`, which work as they work in `cone`, there are some new values. In addition to `height`, `startAngle`, and `angle`, which work as they work in `cone`, there are some new values.
`bottomOuterRadius`, and `bottomInnerRadius` set properties of the bottom circle, `topOuterRadius`, `topInnerRadius` - of the upper circle. They have no initial value, so that means they have to be set. `bottomOuterRadius`, and `bottomInnerRadius` set properties of the bottom circle, `topOuterRadius`, `topInnerRadius` &mdash; of the upper circle. They have no initial value, so that means they have to be set.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
Generally, `cone`, and `coneSurface` buildings work in the same way, it's possible to make `coneSurface`'s fragments as in `cone` Generally, `cone`, and `coneSurface` buildings work in the same way, it's possible to make `coneSurface`'s fragments as in `cone`

CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 02:59:20 +03:00 (Migrated from github.com)
Review

Use &mdash; (—) instead of -.

Use `&mdash;` (&mdash;) instead of ` - `.
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:00:12 +03:00 (Migrated from github.com)
Review
hexagon(
    Point3D(5, 30, 5),
    Point3D(24, 30, 8),
    Point3D(20, 30, -10),
    Point3D(5, 30, -7),
    Point3D(8, 16, 0),
    Point3D(12, 16, 0),
    Point3D(10, 16, -5),
    Point3D(6.5, 12, -3),
    name = "custom_hexagon"
) {
    color("brown")
}
```suggestion hexagon( Point3D(5, 30, 5), Point3D(24, 30, 8), Point3D(20, 30, -10), Point3D(5, 30, -7), Point3D(8, 16, 0), Point3D(12, 16, 0), Point3D(10, 16, -5), Point3D(6.5, 12, -3), name = "custom_hexagon" ) { color("brown") } ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:01:28 +03:00 (Migrated from github.com)
Review
It's scarcely a solid, but it can be visualized, so we mention it.
```suggestion It's scarcely a solid, but it can be visualized, so we mention it. ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:04:12 +03:00 (Migrated from github.com)
Review
* `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!*
```suggestion * `shape` is a value of `List<Point2D>` type. It's just a list of all points of the solid. *`shape` has to consist of not less than two points!* ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:12 +03:00 (Migrated from github.com)
Review
#### The main goal of this tutorial is to show the main capabilities of the visualization instrument.
```suggestion #### The main goal of this tutorial is to show the main capabilities of the visualization instrument. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:05:32 +03:00 (Migrated from github.com)
Review
3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`.
```suggestion 3. `rotation` - it's the point, which sets rotations along axes. Initially, the value is `Point3D(0, 0, 0)`. Changing `x` coordinate of the point, you make pivot around `x axis`. The same for other coordinates: changing `y` - pivot around `y axis`, changing `z` - pivot around `z axis`. ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:07 +03:00 (Migrated from github.com)
Review
***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.***
```suggestion ***There is plenty of other properties, especially those, which you can create by yourself. Here we mention just a small part.*** ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:06:43 +03:00 (Migrated from github.com)
Review
* `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`.
```suggestion * `name` is an identifier of *any solid*; but in this case, it is an identifier of `polyline`. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:30 +03:00 (Migrated from github.com)
Review
As you can see, only the rib of `y-axis` differs from other ribs.
```suggestion As you can see, only the rib of `y-axis` differs from other ribs. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:07:53 +03:00 (Migrated from github.com)
Review
For a final trial, let's create a `box` with a bigger `x` value.
```suggestion For a final trial, let's create a `box` with a bigger `x` value. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:26 +03:00 (Migrated from github.com)
Review
Predictably, only the `x-axis` rib is bigger than other ribs. 
```suggestion Predictably, only the `x-axis` rib is bigger than other ribs. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:08:50 +03:00 (Migrated from github.com)
Review
As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created.
```suggestion As for `radius`, it has `Float` type, and, as you can guess, it sets the radius of the sphere which will be created. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:17 +03:00 (Migrated from github.com)
Review
As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots.
```suggestion As the hexagon takes in specific points, we understand that this solid cannot be moved, it is fixed in space, and it can't make pivots. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:09:43 +03:00 (Migrated from github.com)
Review
Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`.
```suggestion Obviously, `bottomRadius` is responsible for the radius of a bottom base, and `height` sets the height of a cone along the `z-axis`. ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```
CommanderTvis commented 2021-08-06 03:10:14 +03:00 (Migrated from github.com)
Review
* `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one*
```suggestion * `layer` is `MutableList` types variable. (here is a sentence with a description of the work of this function). *The amount of `layer`-s has to be more than one* ```