|
GRASS GIS 8 Programmer's Manual 8.3.2(2024)-exported
|
Nviz library – Position, focus settings. More...
#include <grass/glocale.h>#include <grass/nviz.h>
Go to the source code of this file.
Functions | |
| void | Nviz_init_view (nv_data *data) |
| int | Nviz_set_focus_state (int state_flag) |
| Set focus state. | |
| int | Nviz_set_focus_map (int type, int id) |
| Set focus based on loaded map. | |
| int | Nviz_get_focus (nv_data *data UNUSED, float *x, float *y, float *z) |
| Get focus. | |
| int | Nviz_set_focus (nv_data *data UNUSED, float x, float y, float z) |
| Set focus. | |
| int | Nviz_has_focus (nv_data *data UNUSED) |
| Test focus. | |
| float | Nviz_get_xyrange (nv_data *data) |
| Get xy range. | |
| int | Nviz_get_zrange (nv_data *data UNUSED, float *min, float *max) |
| Get z range. | |
| float | Nviz_get_longdim (nv_data *data UNUSED) |
| Get largest dimension. | |
Nviz library – Position, focus settings.
Based on visualization/nviz/src/position.c
(C) 2008, 2010 by the GRASS Development Team This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.
Definition in file position.c.
| int Nviz_get_focus | ( | nv_data *data | UNUSED, |
| float * | x, | ||
| float * | y, | ||
| float * | z ) |
Get focus.
| data | nviz data [unused] |
| x,y,z | focus coordinates |
Definition at line 120 of file position.c.
References GS_get_focus(), and x.
| float Nviz_get_longdim | ( | nv_data *data | UNUSED | ) |
Get largest dimension.
| data | nviz data [unused] |
Definition at line 197 of file position.c.
References GS_get_longdim().
| float Nviz_get_xyrange | ( | nv_data * | data | ) |
| int Nviz_get_zrange | ( | nv_data *data | UNUSED, |
| float * | min, | ||
| float * | max ) |
Get z range.
| data | nviz data [unused] |
| min,max | z range |
Definition at line 186 of file position.c.
References GS_get_zrange_nz(), max, and min.
| int Nviz_has_focus | ( | nv_data *data | UNUSED | ) |
Test focus.
| data | nviz data [unused] |
Definition at line 160 of file position.c.
References GS_get_focus().
| void Nviz_init_view | ( | nv_data * | data | ) |
Initialize view, position, lighting settings (focus)
Set position to center of view
Definition at line 24 of file position.c.
References GS_init_view(), Nviz_set_focus_state(), Nviz_set_light_ambient(), Nviz_set_light_bright(), Nviz_set_light_color(), and Nviz_set_light_position().
| int Nviz_set_focus | ( | nv_data *data | UNUSED, |
| float | x, | ||
| float | y, | ||
| float | z ) |
Set focus.
| data | nviz data [unused] |
| x,y,z | focus coordinates |
Definition at line 141 of file position.c.
References GS_set_focus(), and x.
| int Nviz_set_focus_map | ( | int | type, |
| int | id ) |
Set focus based on loaded map.
If map is MAP_OBJ_UNDEFINED, set focus from first surface/volume in the list.
| type | map object type |
| id | map object id |
Definition at line 76 of file position.c.
References G_free(), GS_get_surf_list(), GS_num_surfs(), GS_set_focus_center_map(), GS_set_nofocus(), GVL_get_vol_list(), GVL_num_vols(), and GVL_set_focus_center_map().
| int Nviz_set_focus_state | ( | int | state_flag | ) |
Set focus state.
| state_flag | 1 for center view, 0 use viewdir |
Definition at line 50 of file position.c.
References G_warning(), GS_set_infocus(), and GS_set_nofocus().
Referenced by Nviz_init_view().