skia_safe/modules/svg/fe/
light_source.rsuse crate::{
impl_default_make,
prelude::*,
scalar,
svg::{DebugAttributes, NodeSubtype},
};
use skia_bindings as sb;
pub type DistantLight = RCHandle<sb::SkSVGFeDistantLight>;
impl NodeSubtype for sb::SkSVGFeDistantLight {
type Base = sb::SkSVGContainer;
}
impl_default_make!(DistantLight, sb::C_SkSVGFeDistantLight_Make);
impl DebugAttributes for DistantLight {
const NAME: &'static str = "FeDistantLight";
fn _dbg(&self, builder: &mut std::fmt::DebugStruct) {
self.as_base()._dbg(
builder
.field("azimuth", &self.azimuth())
.field("elevation", &self.elevation()),
);
}
}
impl DistantLight {
skia_svg_macros::attrs! {
SkSVGFeDistantLight => {
*azimuth: scalar [get(value) => value, set(value) => value],
*elevation: scalar [get(value) => value, set(value) => value]
}
}
}
pub type PointLight = RCHandle<sb::SkSVGFePointLight>;
impl NodeSubtype for sb::SkSVGFePointLight {
type Base = sb::SkSVGContainer;
}
impl_default_make!(PointLight, sb::C_SkSVGFePointLight_Make);
impl DebugAttributes for PointLight {
const NAME: &'static str = "FePointLight";
fn _dbg(&self, builder: &mut std::fmt::DebugStruct) {
self.as_base()._dbg(
builder
.field("x", &self.x())
.field("y", &self.y())
.field("z", &self.z()),
);
}
}
impl PointLight {
skia_svg_macros::attrs! {
SkSVGFePointLight => {
*x: scalar [get(value) => value, set(value) => value],
*y: scalar [get(value) => value, set(value) => value],
*z: scalar [get(value) => value, set(value) => value]
}
}
}
pub type SpotLight = RCHandle<sb::SkSVGFeSpotLight>;
impl NodeSubtype for sb::SkSVGFeSpotLight {
type Base = sb::SkSVGContainer;
}
impl_default_make!(SpotLight, sb::C_SkSVGFeSpotLight_Make);
impl DebugAttributes for SpotLight {
const NAME: &'static str = "FeSpotLight";
fn _dbg(&self, builder: &mut std::fmt::DebugStruct) {
self.as_base()._dbg(
builder
.field("x", &self.x())
.field("y", &self.y())
.field("z", &self.z())
.field("points_at_x", &self.points_at_x())
.field("points_at_y", &self.points_at_y())
.field("points_at_z", &self.points_at_z())
.field("specular_exponent", &self.specular_exponent())
.field("limiting_cone_angle", &self.limiting_cone_angle()),
);
}
}
impl SpotLight {
skia_svg_macros::attrs! {
SkSVGFeSpotLight => {
*x: scalar [get(value) => value, set(value) => value],
*y: scalar [get(value) => value, set(value) => value],
*z: scalar [get(value) => value, set(value) => value],
*points_at_x: scalar [get(value) => value, set(value) => value],
*points_at_y: scalar [get(value) => value, set(value) => value],
*points_at_z: scalar [get(value) => value, set(value) => value],
*specular_exponent: scalar [get(value) => value, set(value) => value],
*limiting_cone_angle?: scalar [get(value) => value, set(value) => value]
}
}
}