* Add documentation to modules, and some constants and types Signed-off-by: Nick Cameron <nrc@ncameron.org> * Improve the language reference Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
		
			
				
	
	
		
			44 lines
		
	
	
		
			65 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			65 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
title: "lastSegY"
 | 
						|
subtitle: "Function in std::sketch"
 | 
						|
excerpt: "Extract the 'y' axis value of the last line segment in the provided 2-d sketch."
 | 
						|
layout: manual
 | 
						|
---
 | 
						|
 | 
						|
Extract the 'y' axis value of the last line segment in the provided 2-d sketch.
 | 
						|
 | 
						|
```kcl
 | 
						|
lastSegY(@sketch: Sketch): number
 | 
						|
```
 | 
						|
 | 
						|
 | 
						|
 | 
						|
### Arguments
 | 
						|
 | 
						|
| Name | Type | Description | Required |
 | 
						|
|----------|------|-------------|----------|
 | 
						|
| `sketch` | [`Sketch`](/docs/kcl-std/types/std-types-Sketch) | The sketch whose line segment is being queried | Yes |
 | 
						|
 | 
						|
### Returns
 | 
						|
 | 
						|
[`number`](/docs/kcl-std/types/std-types-number) - A number.
 | 
						|
 | 
						|
 | 
						|
### Examples
 | 
						|
 | 
						|
```kcl
 | 
						|
exampleSketch = startSketchOn(XZ)
 | 
						|
  |> startProfile(at = [0, 0])
 | 
						|
  |> line(end = [5, 0])
 | 
						|
  |> line(end = [20, 5])
 | 
						|
  |> line(end = [0, lastSegY(%)])
 | 
						|
  |> line(end = [-15, 0])
 | 
						|
  |> close()
 | 
						|
 | 
						|
example = extrude(exampleSketch, length = 5)
 | 
						|
```
 | 
						|
 | 
						|

 | 
						|
 | 
						|
 |