# LineMoments

Line moment applied to an edge -- distributed moment per unit length
along the selected edge(s).

## Examples

```python
feature = model.get_line_moment(shapes)
feature.load_direction = 'z'
feature.value = 10.0

# Apply multiple changes in a single network call:

with feature.batch():
    feature.load_direction = 'z'
    feature.value = 10.0
```

## Properties

<dl>
<dt>option : int</dt>
<dd>Load option (fixed/multiplier).</dd>
<dt>load_direction : int</dt>
<dd>Load direction (x/y/z).</dd>
<dt>coordinate : int</dt>
<dd>Coordinate system type.</dd>
<dt>coordinate_system : str</dt>
<dd>Coordinate system (local/global_2d/global_3d or csys UUID).</dd>
<dt>load_category : int</dt>
<dd>Load category.</dd>
<dt>load_type : int</dt>
<dd>Load type (unfavourable/favourable).</dd>
<dt>load_variation : int</dt>
<dd>Load variation (constant/linear).</dd>
<dt>m : float | Profile | Gradient</dt>
<dd>Line moment value.</dd>
<dt>p1 : float | Profile | Gradient</dt>
<dd>Linear variation endpoint 1.</dd>
<dt>p2 : float | Profile | Gradient</dt>
<dd>Linear variation endpoint 2.</dd>
<dt>x1 : object</dt>
<dd>Anchor point 1.</dd>
<dt>x2 : object</dt>
<dd>Anchor point 2.</dd>
</dl>
