* Replace tag type with tagIdent and tagDecl Signed-off-by: Nick Cameron <nrc@ncameron.org> * Replace tagIdent with TaggedEdge and TaggedFace Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
36 lines
79 KiB
Markdown
36 lines
79 KiB
Markdown
---
|
||
title: "E"
|
||
subtitle: "Constant in std::math"
|
||
excerpt: "The value of Euler’s number `e`."
|
||
layout: manual
|
||
---
|
||
|
||
The value of Euler’s number `e`.
|
||
|
||
```kcl
|
||
E: number = 2.71828182845904523536028747135266250_
|
||
```
|
||
|
||
|
||
|
||
### Type
|
||
|
||
[`number`](/docs/kcl-std/types/std-types-number) - A number.
|
||
|
||
### Examples
|
||
|
||
```kcl
|
||
exampleSketch = startSketchOn(XZ)
|
||
|> startProfile(at = [0, 0])
|
||
|> angledLine(angle = 30deg, length = 2 * E ^ 2)
|
||
|> yLine(endAbsolute = 0)
|
||
|> close()
|
||
|
||
example = extrude(exampleSketch, length = 10)
|
||
|
||
```
|
||
|
||

|
||
|
||
|