void LineLayer::setLineRoundLimit(PropertyValue<float> value) { if (value == getLineRoundLimit()) return; auto impl_ = mutableImpl(); impl_->layout.get<LineRoundLimit>() = value; baseImpl = std::move(impl_); observer->onLayerChanged(*this); }
void LineLayer::setLineRoundLimit(PropertyValue<float> value) { if (value == getLineRoundLimit()) return; impl->layout.lineRoundLimit.set(value); impl->observer->onLayerLayoutPropertyChanged(*this); }