Donner SVG Editor & Engine
SVG-native editor and embeddable SVG2 + CSS3 engine in C++20, with GPU (WebGPU) and compact CPU renderers, built for correctness, security, and performance.
Loading...
Searching...
No Matches
VectorEffect.h File Reference
#include <cstdint>
#include <ostream>
#include "donner/base/Utils.h"
Include dependency graph for VectorEffect.h:
This graph shows which files directly or indirectly include this file:

Namespaces

namespace  donner
 Top-level Donner namespace, which is split into different sub-namespaces such as donner::svg and donner::css.
namespace  donner::svg
 Donner SVG library, which can load, manipulate and render SVG files.

Enumerations

enum class  donner::svg::VectorEffect : uint8_t {
  donner::svg::None ,
  donner::svg::NonScalingStroke ,
  donner::svg::NonScalingSize ,
  donner::svg::NonRotation ,
  donner::svg::FixedPosition
}
 Values for the vector-effect property, which modifies how an element is affected by the coordinate system transformations in effect (such as viewBox scaling and transform). More...

Functions

std::ostream & donner::svg::operator<< (std::ostream &os, VectorEffect value)
 Output stream operator for VectorEffect, outputs the CSS string representation for this enum, e.g. "none", "non-scaling-stroke", etc.