skia_safe/modules/svg/shape/
circle.rsuse crate::{
impl_default_make,
prelude::*,
svg::{DebugAttributes, Length, NodeSubtype},
};
use skia_bindings as sb;
pub type Circle = RCHandle<sb::SkSVGCircle>;
impl NodeSubtype for sb::SkSVGCircle {
type Base = sb::SkSVGShape;
}
impl_default_make!(Circle, sb::C_SkSVGCircle_Make);
impl DebugAttributes for Circle {
const NAME: &'static str = "Circle";
fn _dbg(&self, builder: &mut std::fmt::DebugStruct) {
self.as_base()._dbg(
builder
.field("cx", &self.cx())
.field("cy", &self.cy())
.field("r", &self.r()),
);
}
}
impl Circle {
skia_svg_macros::attrs! {
SkSVGCircle => {
cx: Length [get(value) => Length::from_native_ref(value), set(value) => value.into_native()],
cy: Length [get(value) => Length::from_native_ref(value), set(value) => value.into_native()],
r: Length [get(value) => Length::from_native_ref(value), set(value) => value.into_native()]
}
}
}