module libwasm.bindings.SVGComponentTransferFunctionElement; import libwasm.types; import memutils.ct: tuple; import libwasm.bindings.SVGAnimatedEnumeration; import libwasm.bindings.SVGAnimatedNumber; import libwasm.bindings.SVGAnimatedNumberList; import libwasm.bindings.SVGElement; @safe: nothrow: struct SVGComponentTransferFunctionElement { nothrow: libwasm.bindings.SVGElement.SVGElement _parent; alias _parent this; this(Handle h) { _parent = .SVGElement(h); } enum ushort SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; enum ushort SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; enum ushort SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; enum ushort SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; enum ushort SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; enum ushort SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; auto type()() { return SVGAnimatedEnumeration(Object_Getter__Handle(this._parent, "type")); } auto tableValues()() { return SVGAnimatedNumberList(Object_Getter__Handle(this._parent, "tableValues")); } auto slope()() { return SVGAnimatedNumber(Object_Getter__Handle(this._parent, "slope")); } auto intercept()() { return SVGAnimatedNumber(Object_Getter__Handle(this._parent, "intercept")); } auto amplitude()() { return SVGAnimatedNumber(Object_Getter__Handle(this._parent, "amplitude")); } auto exponent()() { return SVGAnimatedNumber(Object_Getter__Handle(this._parent, "exponent")); } auto offset()() { return SVGAnimatedNumber(Object_Getter__Handle(this._parent, "offset")); } }