#[non_exhaustive]pub enum TransformCategory {
Unknown,
Any,
_3d,
_2d,
_2dAffine,
_2dTranslate,
Identity,
}
Expand description
The categories of matrices relevant for GSK and GTK.
Note that any category includes matrices of all later categories.
So if you want to for example check if a matrix is a 2D matrix,
category >= GSK_TRANSFORM_CATEGORY_2D
is the way to do this.
Also keep in mind that rounding errors may cause matrices to not
conform to their categories. Otherwise, matrix operations done via
multiplication will not worsen categories. So for the matrix
multiplication C = A * B
, category(C) = MIN (category(A), category(B))
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Unknown
The category of the matrix has not been determined.
Any
Analyzing the matrix concluded that it does not fit in any other category.
_3d
The matrix is a 3D matrix. This means that the w column (the last column) has the values (0, 0, 0, 1).
_2d
The matrix is a 2D matrix. This is equivalent
to graphene_matrix_is_2d() returning true
. In particular, this
means that Cairo can deal with the matrix.
_2dAffine
The matrix is a combination of 2D scale and 2D translation operations. In particular, this means that any rectangle can be transformed exactly using this matrix.
_2dTranslate
The matrix is a 2D translation.
Identity
The matrix is the identity matrix.
Trait Implementations§
Source§impl Clone for TransformCategory
impl Clone for TransformCategory
Source§fn clone(&self) -> TransformCategory
fn clone(&self) -> TransformCategory
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for TransformCategory
impl Debug for TransformCategory
Source§impl From<TransformCategory> for Value
impl From<TransformCategory> for Value
Source§fn from(v: TransformCategory) -> Self
fn from(v: TransformCategory) -> Self
Source§impl<'a> FromValue<'a> for TransformCategory
impl<'a> FromValue<'a> for TransformCategory
Source§type Checker = GenericValueTypeChecker<TransformCategory>
type Checker = GenericValueTypeChecker<TransformCategory>
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Value
. Read moreSource§impl HasParamSpec for TransformCategory
impl HasParamSpec for TransformCategory
type ParamSpec = ParamSpecEnum
Source§type SetValue = TransformCategory
type SetValue = TransformCategory
type BuilderFn = fn(_: &str, _: TransformCategory) -> ParamSpecEnumBuilder<'_, TransformCategory>
fn param_spec_builder() -> Self::BuilderFn
Source§impl Hash for TransformCategory
impl Hash for TransformCategory
Source§impl Ord for TransformCategory
impl Ord for TransformCategory
Source§fn cmp(&self, other: &TransformCategory) -> Ordering
fn cmp(&self, other: &TransformCategory) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for TransformCategory
impl PartialEq for TransformCategory
Source§impl PartialOrd for TransformCategory
impl PartialOrd for TransformCategory
Source§impl StaticType for TransformCategory
impl StaticType for TransformCategory
Source§fn static_type() -> Type
fn static_type() -> Type
Self
.Source§impl ToValue for TransformCategory
impl ToValue for TransformCategory
Source§impl ValueType for TransformCategory
impl ValueType for TransformCategory
Source§type Type = TransformCategory
type Type = TransformCategory
Type
from. Read moreimpl Copy for TransformCategory
impl Eq for TransformCategory
impl StructuralPartialEq for TransformCategory
Auto Trait Implementations§
impl Freeze for TransformCategory
impl RefUnwindSafe for TransformCategory
impl Send for TransformCategory
impl Sync for TransformCategory
impl Unpin for TransformCategory
impl UnwindSafe for TransformCategory
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
Source§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
Source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
Source§fn ensure_type()
fn ensure_type()
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.