Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/gpencil/intern/gpencil_io_base.hh
| Show First 20 Lines • Show All 64 Lines • ▼ Show 20 Lines | protected: | ||||
| float2 offset_; | float2 offset_; | ||||
| int cfra_; | int cfra_; | ||||
| float stroke_color_[4], fill_color_[4]; | float stroke_color_[4], fill_color_[4]; | ||||
| /* Geometry functions. */ | /* Geometry functions. */ | ||||
| /** Convert to screenspace. */ | /** Convert to screen-space. */ | ||||
| bool gpencil_3D_point_to_screen_space(const float3 co, float2 &r_co); | bool gpencil_3D_point_to_screen_space(const float3 co, float2 &r_co); | ||||
| /** Convert to render space. */ | /** Convert to render space. */ | ||||
| float2 gpencil_3D_point_to_render_space(const float3 co); | float2 gpencil_3D_point_to_render_space(const float3 co); | ||||
| /** Convert to 2D. */ | /** Convert to 2D. */ | ||||
| float2 gpencil_3D_point_to_2D(const float3 co); | float2 gpencil_3D_point_to_2D(const float3 co); | ||||
| /** Get radius of point. */ | /** Get radius of point. */ | ||||
| float stroke_point_radius_get(struct bGPDlayer *gpl, struct bGPDstroke *gps); | float stroke_point_radius_get(struct bGPDlayer *gpl, struct bGPDstroke *gps); | ||||
| Show All 29 Lines | |||||