# ImageShearDrawingAxis

## Syntax

```
ImageShearDrawingAxis( name, x, y )
```

Or as a member:

```
someImage.shearDrawingAxis( x, y )
```

## Arguments

| Name | Type    | Required | Default | Description                                                   |
| ---- | ------- | -------- | ------- | ------------------------------------------------------------- |
| name | any     | Yes      |         | The image to shear. Can be a `BoxImage` object or image name. |
| x    | numeric | Yes      | 0       | The shear amount along the x-axis.                            |
| y    | numeric | Yes      | 0       | The shear amount along the y-axis.                            |

## Returns

`BoxImage` — The sheared image object.

## Description

Applies a shear transformation to the specified image along custom axes. The `x` and `y` arguments control the amount of shear along the horizontal and vertical axes, respectively. Useful for advanced graphics effects and custom distortions.

## Example

```boxlang
// Shear image by 0.5 along x-axis and 0.2 along y-axis
result = ImageShearDrawingAxis( myImage, 0.5, 0.2 );

// As a member function
myImage.shearDrawingAxis( 0.3, 0.1 );
```

## Related BIFs

* ImageShear
* ImageRotateDrawingAxis
* ImageResize

## Notes

* The `name` argument can be a `BoxImage` object or the name of an image variable in the current context.
* The operation modifies the image in place when used as a member function.
* Returns the modified image object for chaining or further processing.
* The `x` and `y` arguments specify the shear amount along each axis.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://boxlang.ortusbooks.com/boxlang-framework/modularity/image-manipulation/reference/built-in-functions/imagesheardrawingaxis.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
