Changeset 24256 for issm/trunk-jpl/src/m/extrusion/project2d.py
- Timestamp:
- 10/18/19 06:52:19 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/extrusion/project2d.py
r24213 r24256 31 31 vec2d = False 32 32 if value.ndim == 2 and value.shape[1] == 1: 33 value = value.reshape(- 33 value = value.reshape(-1, ) 34 34 vec2d = True 35 35 … … 45 45 46 46 if vec2d: 47 projection_value = projection_value.reshape(- 47 projection_value = projection_value.reshape(-1, ) 48 48 49 49 return projection_value
Note:
See TracChangeset
for help on using the changeset viewer.