Struct extendr_api::graphics::Context

source ·
pub struct Context {
    context: R_GE_gcontext,
    xscale: (f64, f64),
    yscale: (f64, f64),
    offset: (f64, f64),
    scalar: f64,
}

Fields§

§context: R_GE_gcontext§xscale: (f64, f64)§yscale: (f64, f64)§offset: (f64, f64)§scalar: f64

Implementations§

source§

impl Context

source

pub fn from_device(dev: &Device, unit: Unit) -> Self

source

pub fn color(&mut self, col: Color) -> &mut Self

Set the line or text color of a primitive.

source

pub fn fill(&mut self, fill: Color) -> &mut Self

Set the fill color of a primitive.

source

pub fn gamma(&mut self, gamma: f64) -> &mut Self

Set the gamma of the device. out_color = in_color ** gamma

source

pub fn line_width(&mut self, lwd: f64) -> &mut Self

Set the width of the line in chosen units.

source

pub fn line_type(&mut self, lty: LineType) -> &mut Self

Set the type of the line.

Blank    => <invisible>
Solid    => ------
Dashed   => - - - -
Dotted   => . . . .
DotDash  => . - . -
LongDash => --  --
TwoDash  => . . - -
source

pub fn line_end(&mut self, lend: LineEnd) -> &mut Self

Set the line end type.

  LineEnd::RoundCap
  LineEnd::ButtCap  
  LineEnd::SquareCap
source

pub fn line_join(&mut self, ljoin: LineJoin) -> &mut Self

Set the line join type.

  LineJoin::RoundJoin
  LineJoin::MitreJoin
  LineJoin::BevelJoin
source

pub fn point_size(&mut self, ps: f64) -> &mut Self

source

pub fn line_mitre(&mut self, lmitre: f64) -> &mut Self

Set the line miter limit - the point where the line becomes a bevel join.

source

pub fn line_height(&mut self, lineheight: f64) -> &mut Self

Set the line height for text.

source

pub fn font_face(&mut self, fontface: FontFace) -> &mut Self

Set the font face.

  FontFace::PlainFont
  FontFace::BoldFont
  FontFace::ItalicFont
  FontFace::BoldItalicFont
  FontFace::SymbolFont
source

pub fn font_family(&mut self, fontfamily: &str) -> &mut Self

source

pub fn transform( &mut self, xscale: (f64, f64), yscale: (f64, f64), offset: (f64, f64) ) -> &mut Self

Set the transform as a 3x2 matrix.

source

pub(crate) fn context(&self) -> pGEcontext

source

pub(crate) fn t(&self, xy: (f64, f64)) -> (f64, f64)

source

pub(crate) fn trel(&self, wh: (f64, f64)) -> (f64, f64)

source

pub(crate) fn ts(&self, value: f64) -> f64

source

pub(crate) fn its(&self, value: f64) -> f64

source

pub(crate) fn tmetric(&self, tm: TextMetric) -> TextMetric

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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. 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.