pub trait IDCompositionSkewTransform_Impl: Sized + IDCompositionTransform_Impl {
    // Required methods
    fn SetAngleX(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetAngleX2(&self, anglex: f32) -> Result<()>;
    fn SetAngleY(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetAngleY2(&self, angley: f32) -> Result<()>;
    fn SetCenterX(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetCenterX2(&self, centerx: f32) -> Result<()>;
    fn SetCenterY(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetCenterY2(&self, centery: f32) -> Result<()>;
}

Required Methods§

fn SetAngleX(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetAngleX2(&self, anglex: f32) -> Result<()>

fn SetAngleY(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetAngleY2(&self, angley: f32) -> Result<()>

fn SetCenterX(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetCenterX2(&self, centerx: f32) -> Result<()>

fn SetCenterY(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetCenterY2(&self, centery: f32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§