#[repr(C)]
pub struct R_GE_gcontext {
Show 14 fields pub col: i32, pub fill: i32, pub gamma: f64, pub lwd: f64, pub lty: i32, pub lend: u32, pub ljoin: u32, pub lmitre: f64, pub cex: f64, pub ps: f64, pub lineheight: f64, pub fontface: i32, pub fontfamily: [i8; 201], pub patternFill: *mut SEXPREC,
}
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: i32

pen colour (lines, text, borders, …)

§fill: i32

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

§gamma: f64

Gamma correction

§lwd: f64

Line width (roughly number of pixels)

§lty: i32

Line type (solid, dashed, dotted, …)

§lend: u32

Line end

§ljoin: u32

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: i32

Font face (plain, italic, bold, …)

§fontfamily: [i8; 201]

Font family

§patternFill: *mut SEXPREC

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<(), Error>

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.