The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

our $VERSION = '0.0081';
use Weed 'SFInt32 : X3DField { 0 }';
sub setValue {
my ( $this, $value ) = @_;
$this->X3DField::setValue(
defined $value ? Weed::Parse::Int32::int32( \"$value" ) || 0 : $this->getDefaultValue
);
}
sub toString {
return sprintf X3DGenerator->INT32, $_[0]->getValue;
}
1;
__END__