36 lines
		
	
	
		
			371 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			371 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
title: "legAngX"
 | 
						|
excerpt: "Compute the angle of the given leg for x."
 | 
						|
layout: manual
 | 
						|
---
 | 
						|
 | 
						|
Compute the angle of the given leg for x.
 | 
						|
 | 
						|
 | 
						|
 | 
						|
```js
 | 
						|
legAngX(hypotenuse: number, leg: number) -> number
 | 
						|
```
 | 
						|
 | 
						|
### Tags
 | 
						|
 | 
						|
* `utilities`
 | 
						|
 | 
						|
### Examples
 | 
						|
 | 
						|
```js
 | 
						|
legAngX(5, 3)
 | 
						|
```
 | 
						|
 | 
						|
### Arguments
 | 
						|
 | 
						|
* `hypotenuse`: `number` (REQUIRED)
 | 
						|
* `leg`: `number` (REQUIRED)
 | 
						|
 | 
						|
### Returns
 | 
						|
 | 
						|
`number`
 | 
						|
 | 
						|
 | 
						|
 |