change TyF64 to f64 according to JsonSchema and cleanup docs code (#6081)
* cleanup gen_std Signed-off-by: Jess Frazelle <github@jessfraz.com> * cleanup docs Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix table Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
		@ -17,7 +17,7 @@ circle(@sketch_or_surface: Sketch | Plane | Face, center: Point2d, radius: numbe
 | 
			
		||||
 | 
			
		||||
| Name | Type | Description | Required |
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `sketch_or_surface` | [`Sketch`](/docs/kcl/types/Sketch) `|` [`Plane`](/docs/kcl/types/Face) `|` [`Plane`](/docs/kcl/types/Face) | Sketch to extend, or plane or surface to sketch on. | Yes |
 | 
			
		||||
| `sketch_or_surface` | [`Sketch`](/docs/kcl/types/Sketch) OR [`Plane`](/docs/kcl/types/Plane) OR [`Face`](/docs/kcl/types/Face) | Sketch to extend, or plane or surface to sketch on. | Yes |
 | 
			
		||||
| `center` | [`Point2d`](/docs/kcl/types/Point2d) | The center of the circle. | Yes |
 | 
			
		||||
| `radius` | [`number`](/docs/kcl/types/number) | The radius of the circle. | Yes |
 | 
			
		||||
| [`tag`](/docs/kcl/types/tag) | [`tag`](/docs/kcl/types/tag) | Create a new tag which refers to this circle. | No |
 | 
			
		||||
 | 
			
		||||
@ -207302,372 +207302,8 @@
 | 
			
		||||
          },
 | 
			
		||||
          "definitions": {
 | 
			
		||||
            "TyF64": {
 | 
			
		||||
              "type": "object",
 | 
			
		||||
              "required": [
 | 
			
		||||
                "n",
 | 
			
		||||
                "ty"
 | 
			
		||||
              ],
 | 
			
		||||
              "properties": {
 | 
			
		||||
                "n": {
 | 
			
		||||
                  "type": "number",
 | 
			
		||||
                  "format": "double"
 | 
			
		||||
                },
 | 
			
		||||
                "ty": {
 | 
			
		||||
                  "$ref": "#/components/schemas/NumericType"
 | 
			
		||||
                }
 | 
			
		||||
              }
 | 
			
		||||
            },
 | 
			
		||||
            "NumericType": {
 | 
			
		||||
              "oneOf": [
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "oneOf": [
 | 
			
		||||
                    {
 | 
			
		||||
                      "type": "object",
 | 
			
		||||
                      "required": [
 | 
			
		||||
                        "type"
 | 
			
		||||
                      ],
 | 
			
		||||
                      "properties": {
 | 
			
		||||
                        "type": {
 | 
			
		||||
                          "type": "string",
 | 
			
		||||
                          "enum": [
 | 
			
		||||
                            "Count"
 | 
			
		||||
                          ]
 | 
			
		||||
                        }
 | 
			
		||||
                      }
 | 
			
		||||
                    },
 | 
			
		||||
                    {
 | 
			
		||||
                      "description": "A unit of length.",
 | 
			
		||||
                      "type": "object",
 | 
			
		||||
                      "oneOf": [
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "Mm"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "Cm"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "M"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "Inches"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "Feet"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "Yards"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        }
 | 
			
		||||
                      ],
 | 
			
		||||
                      "required": [
 | 
			
		||||
                        "type"
 | 
			
		||||
                      ],
 | 
			
		||||
                      "properties": {
 | 
			
		||||
                        "type": {
 | 
			
		||||
                          "type": "string",
 | 
			
		||||
                          "enum": [
 | 
			
		||||
                            "Length"
 | 
			
		||||
                          ]
 | 
			
		||||
                        }
 | 
			
		||||
                      }
 | 
			
		||||
                    },
 | 
			
		||||
                    {
 | 
			
		||||
                      "description": "A unit of angle.",
 | 
			
		||||
                      "type": "object",
 | 
			
		||||
                      "oneOf": [
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "Degrees"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        },
 | 
			
		||||
                        {
 | 
			
		||||
                          "type": "object",
 | 
			
		||||
                          "required": [
 | 
			
		||||
                            "type"
 | 
			
		||||
                          ],
 | 
			
		||||
                          "properties": {
 | 
			
		||||
                            "type": {
 | 
			
		||||
                              "type": "string",
 | 
			
		||||
                              "enum": [
 | 
			
		||||
                                "Radians"
 | 
			
		||||
                              ]
 | 
			
		||||
                            }
 | 
			
		||||
                          }
 | 
			
		||||
                        }
 | 
			
		||||
                      ],
 | 
			
		||||
                      "required": [
 | 
			
		||||
                        "type"
 | 
			
		||||
                      ],
 | 
			
		||||
                      "properties": {
 | 
			
		||||
                        "type": {
 | 
			
		||||
                          "type": "string",
 | 
			
		||||
                          "enum": [
 | 
			
		||||
                            "Angle"
 | 
			
		||||
                          ]
 | 
			
		||||
                        }
 | 
			
		||||
                      }
 | 
			
		||||
                    }
 | 
			
		||||
                  ],
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Known"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "angle",
 | 
			
		||||
                    "len",
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Default"
 | 
			
		||||
                      ]
 | 
			
		||||
                    },
 | 
			
		||||
                    "len": {
 | 
			
		||||
                      "$ref": "#/components/schemas/UnitLen"
 | 
			
		||||
                    },
 | 
			
		||||
                    "angle": {
 | 
			
		||||
                      "$ref": "#/components/schemas/UnitAngle"
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Unknown"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Any"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                }
 | 
			
		||||
              ]
 | 
			
		||||
            },
 | 
			
		||||
            "UnitLen": {
 | 
			
		||||
              "description": "A unit of length.",
 | 
			
		||||
              "oneOf": [
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Mm"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Cm"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "M"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Inches"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Feet"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Yards"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                }
 | 
			
		||||
              ]
 | 
			
		||||
            },
 | 
			
		||||
            "UnitAngle": {
 | 
			
		||||
              "description": "A unit of angle.",
 | 
			
		||||
              "oneOf": [
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Degrees"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                },
 | 
			
		||||
                {
 | 
			
		||||
                  "type": "object",
 | 
			
		||||
                  "required": [
 | 
			
		||||
                    "type"
 | 
			
		||||
                  ],
 | 
			
		||||
                  "properties": {
 | 
			
		||||
                    "type": {
 | 
			
		||||
                      "type": "string",
 | 
			
		||||
                      "enum": [
 | 
			
		||||
                        "Radians"
 | 
			
		||||
                      ]
 | 
			
		||||
                    }
 | 
			
		||||
                  }
 | 
			
		||||
                }
 | 
			
		||||
              ]
 | 
			
		||||
              "type": "number",
 | 
			
		||||
              "format": "double"
 | 
			
		||||
            }
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
 | 
			
		||||
@ -28,7 +28,7 @@ An extrude plane.
 | 
			
		||||
| `faceId` |[`string`](/docs/kcl/types/string)| The face id for the extrude plane. | No |
 | 
			
		||||
| [`tag`](/docs/kcl/types/tag) |[`TagDeclarator`](/docs/kcl/types#tag-declaration)| The tag. | No |
 | 
			
		||||
| `id` |[`string`](/docs/kcl/types/string)| The id of the geometry. | No |
 | 
			
		||||
| `sourceRange` |[`SourceRange`](/docs/kcl/types/SourceRange)| The source range. | No |
 | 
			
		||||
| `sourceRange` |`[integer, integer, integer]`| The source range. | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
----
 | 
			
		||||
@ -48,7 +48,7 @@ An extruded arc.
 | 
			
		||||
| `faceId` |[`string`](/docs/kcl/types/string)| The face id for the extrude plane. | No |
 | 
			
		||||
| [`tag`](/docs/kcl/types/tag) |[`TagDeclarator`](/docs/kcl/types#tag-declaration)| The tag. | No |
 | 
			
		||||
| `id` |[`string`](/docs/kcl/types/string)| The id of the geometry. | No |
 | 
			
		||||
| `sourceRange` |[`SourceRange`](/docs/kcl/types/SourceRange)| The source range. | No |
 | 
			
		||||
| `sourceRange` |`[integer, integer, integer]`| The source range. | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
----
 | 
			
		||||
@ -68,7 +68,7 @@ Geometry metadata.
 | 
			
		||||
| `faceId` |[`string`](/docs/kcl/types/string)| The id for the chamfer surface. | No |
 | 
			
		||||
| [`tag`](/docs/kcl/types/tag) |[`TagDeclarator`](/docs/kcl/types#tag-declaration)| The tag. | No |
 | 
			
		||||
| `id` |[`string`](/docs/kcl/types/string)| The id of the geometry. | No |
 | 
			
		||||
| `sourceRange` |[`SourceRange`](/docs/kcl/types/SourceRange)| The source range. | No |
 | 
			
		||||
| `sourceRange` |`[integer, integer, integer]`| The source range. | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
----
 | 
			
		||||
@ -88,7 +88,7 @@ Geometry metadata.
 | 
			
		||||
| `faceId` |[`string`](/docs/kcl/types/string)| The id for the fillet surface. | No |
 | 
			
		||||
| [`tag`](/docs/kcl/types/tag) |[`TagDeclarator`](/docs/kcl/types#tag-declaration)| The tag. | No |
 | 
			
		||||
| `id` |[`string`](/docs/kcl/types/string)| The id of the geometry. | No |
 | 
			
		||||
| `sourceRange` |[`SourceRange`](/docs/kcl/types/SourceRange)| The source range. | No |
 | 
			
		||||
| `sourceRange` |`[integer, integer, integer]`| The source range. | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
----
 | 
			
		||||
 | 
			
		||||
@ -17,6 +17,6 @@ Geometry metadata.
 | 
			
		||||
| Property | Type | Description | Required |
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `id` |[`string`](/docs/kcl/types/string)| The id of the geometry. | No |
 | 
			
		||||
| `sourceRange` |[`SourceRange`](/docs/kcl/types/SourceRange)| The source range. | No |
 | 
			
		||||
| `sourceRange` |`[integer, integer, integer]`| The source range. | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -17,7 +17,7 @@ A helix.
 | 
			
		||||
| Property | Type | Description | Required |
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `value` |[`string`](/docs/kcl/types/string)| The id of the helix. | No |
 | 
			
		||||
| `artifactId` |[`ArtifactId`](/docs/kcl/types/ArtifactId)| The artifact ID. | No |
 | 
			
		||||
| `artifactId` |[`string`](/docs/kcl/types/string)| The artifact ID. | No |
 | 
			
		||||
| `revolutions` |[`number`](/docs/kcl/types/number)| Number of revolutions. | No |
 | 
			
		||||
| `angleStart` |[`number`](/docs/kcl/types/number)| Start angle (in degrees). | No |
 | 
			
		||||
| `ccw` |`boolean`| Is the helix rotation counter clockwise? | No |
 | 
			
		||||
 | 
			
		||||
@ -285,7 +285,7 @@ Data for an imported geometry.
 | 
			
		||||
| Property | Type | Description | Required |
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `type` |enum: `Module`|  | No |
 | 
			
		||||
| `value` |[`ModuleId`](/docs/kcl/types/ModuleId)| Identifier of a source file.  Uses a u32 to keep the size small. | No |
 | 
			
		||||
| `value` |`integer`| Identifier of a source file.  Uses a u32 to keep the size small. | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
----
 | 
			
		||||
 | 
			
		||||
@ -17,6 +17,6 @@ Data for polar coordinates.
 | 
			
		||||
| Property | Type | Description | Required |
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `angle` |[`number`](/docs/kcl/types/number)| The angle of the line (in degrees). | No |
 | 
			
		||||
| `length` |[`TyF64`](/docs/kcl/types/TyF64)| The length of the line. | No |
 | 
			
		||||
| `length` |[`number`](/docs/kcl/types/number)| The length of the line. | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -25,7 +25,7 @@ A sketch type.
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `type` |enum: `plane`|  | No |
 | 
			
		||||
| `id` |[`string`](/docs/kcl/types/string)| The id of the plane. | No |
 | 
			
		||||
| `artifactId` |[`ArtifactId`](/docs/kcl/types/ArtifactId)| The artifact ID. | No |
 | 
			
		||||
| `artifactId` |[`string`](/docs/kcl/types/string)| The artifact ID. | No |
 | 
			
		||||
| `value` |[`PlaneType`](/docs/kcl/types/PlaneType)| Type for a plane. | No |
 | 
			
		||||
| `origin` |[`Point3d`](/docs/kcl/types/Point3d)| Origin of the plane. | No |
 | 
			
		||||
| `xAxis` |[`Point3d`](/docs/kcl/types/Point3d)| What should the plane's X axis be? | No |
 | 
			
		||||
@ -49,7 +49,7 @@ A face.
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `type` |enum: `face`|  | No |
 | 
			
		||||
| `id` |[`string`](/docs/kcl/types/string)| The id of the face. | No |
 | 
			
		||||
| `artifactId` |[`ArtifactId`](/docs/kcl/types/ArtifactId)| The artifact ID. | No |
 | 
			
		||||
| `artifactId` |[`string`](/docs/kcl/types/string)| The artifact ID. | No |
 | 
			
		||||
| `value` |[`string`](/docs/kcl/types/string)| The tag of the face. | No |
 | 
			
		||||
| `xAxis` |[`Point3d`](/docs/kcl/types/Point3d)| What should the face's X axis be? | No |
 | 
			
		||||
| `yAxis` |[`Point3d`](/docs/kcl/types/Point3d)| What should the face's Y axis be? | No |
 | 
			
		||||
 | 
			
		||||
@ -1,15 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
title: "SourceRange"
 | 
			
		||||
excerpt: ""
 | 
			
		||||
layout: manual
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
**Type:** `integer` (`uint`)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -5,17 +5,11 @@ layout: manual
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
**Type:** `object`
 | 
			
		||||
**Type:** [`number`](/docs/kcl/types/number) (`double`)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Properties
 | 
			
		||||
 | 
			
		||||
| Property | Type | Description | Required |
 | 
			
		||||
|----------|------|-------------|----------|
 | 
			
		||||
| `n` |[`number`](/docs/kcl/types/number)|  | No |
 | 
			
		||||
| `ty` |[`NumericType`](/docs/kcl/types/NumericType)|  | No |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user