Struct libR_sys::R_GE_gcontext

source ·
#[repr(C)]
pub struct R_GE_gcontext {
Show 14 fields pub col: c_int, pub fill: c_int, pub gamma: f64, pub lwd: f64, pub lty: c_int, pub lend: R_GE_lineend, pub ljoin: R_GE_linejoin, pub lmitre: f64, pub cex: f64, pub ps: f64, pub lineheight: f64, pub fontface: c_int, pub fontfamily: [c_char; 201], pub patternFill: SEXP,
}
Expand description

A structure containing graphical parameters

This is how graphical parameters are passed from graphics systems to the graphics engine AND from the graphics engine to graphics devices.

Devices are not required to honour graphical parameters (e.g., alpha transparency is going to be tough for some)

Fields§

§col: c_int

pen colour (lines, text, borders, …)

§fill: c_int

fill colour (for polygons, circles, rects, …)

§gamma: f64

Gamma correction

§lwd: f64

Line width (roughly number of pixels)

§lty: c_int

Line type (solid, dashed, dotted, …)

§lend: R_GE_lineend

Line end

§ljoin: R_GE_linejoin

line join

§lmitre: f64

line mitre

§cex: f64

Character expansion (font size = fontsize*cex)

§ps: f64

Font size in points

§lineheight: f64

Line height (multiply by font size)

§fontface: c_int

Font face (plain, italic, bold, …)

§fontfamily: [c_char; 201]

Font family

§patternFill: SEXP

Reference to a pattern fill

Trait Implementations§

source§

impl Clone for R_GE_gcontext

source§

fn clone(&self) -> R_GE_gcontext

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for R_GE_gcontext

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for R_GE_gcontext

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.