#[repr(u32)]pub enum VisualScriptBuiltinFuncBuiltinFunc {
Show 64 variants
MathSin = 0,
MathCos = 1,
MathTan = 2,
MathSinh = 3,
MathCosh = 4,
MathTanh = 5,
MathAsin = 6,
MathAcos = 7,
MathAtan = 8,
MathAtan2 = 9,
MathSqrt = 10,
MathFmod = 11,
MathFposmod = 12,
MathFloor = 13,
MathCeil = 14,
MathRound = 15,
MathAbs = 16,
MathSign = 17,
MathPow = 18,
MathLog = 19,
MathExp = 20,
MathIsnan = 21,
MathIsinf = 22,
MathEase = 23,
MathDecimals = 24,
MathStepify = 25,
MathLerp = 26,
MathInverseLerp = 27,
MathRangeLerp = 28,
MathDectime = 29,
MathRandomize = 30,
MathRand = 31,
MathRandf = 32,
MathRandom = 33,
MathSeed = 34,
MathRandseed = 35,
MathDeg2rad = 36,
MathRad2deg = 37,
MathLinear2db = 38,
MathDb2linear = 39,
MathPolar2cartesian = 40,
MathCartesian2polar = 41,
MathWrap = 42,
MathWrapf = 43,
LogicMax = 44,
LogicMin = 45,
LogicClamp = 46,
LogicNearestPo2 = 47,
ObjWeakref = 48,
FuncFuncref = 49,
TypeConvert = 50,
TypeOf = 51,
TypeExists = 52,
TextChar = 53,
TextStr = 54,
TextPrint = 55,
TextPrinterr = 56,
TextPrintraw = 57,
VarToStr = 58,
StrToVar = 59,
VarToBytes = 60,
BytesToVar = 61,
Colorn = 62,
FuncMax = 63,
}
Variants§
MathSin = 0
MathCos = 1
MathTan = 2
MathSinh = 3
MathCosh = 4
MathTanh = 5
MathAsin = 6
MathAcos = 7
MathAtan = 8
MathAtan2 = 9
MathSqrt = 10
MathFmod = 11
MathFposmod = 12
MathFloor = 13
MathCeil = 14
MathRound = 15
MathAbs = 16
MathSign = 17
MathPow = 18
MathLog = 19
MathExp = 20
MathIsnan = 21
MathIsinf = 22
MathEase = 23
MathDecimals = 24
MathStepify = 25
MathLerp = 26
MathInverseLerp = 27
MathRangeLerp = 28
MathDectime = 29
MathRandomize = 30
MathRand = 31
MathRandf = 32
MathRandom = 33
MathSeed = 34
MathRandseed = 35
MathDeg2rad = 36
MathRad2deg = 37
MathLinear2db = 38
MathDb2linear = 39
MathPolar2cartesian = 40
MathCartesian2polar = 41
MathWrap = 42
MathWrapf = 43
LogicMax = 44
LogicMin = 45
LogicClamp = 46
LogicNearestPo2 = 47
ObjWeakref = 48
FuncFuncref = 49
TypeConvert = 50
TypeOf = 51
TypeExists = 52
TextChar = 53
TextStr = 54
TextPrint = 55
TextPrinterr = 56
TextPrintraw = 57
VarToStr = 58
StrToVar = 59
VarToBytes = 60
BytesToVar = 61
Colorn = 62
FuncMax = 63
Trait Implementations§
Source§impl Clone for VisualScriptBuiltinFuncBuiltinFunc
impl Clone for VisualScriptBuiltinFuncBuiltinFunc
Source§fn clone(&self) -> VisualScriptBuiltinFuncBuiltinFunc
fn clone(&self) -> VisualScriptBuiltinFuncBuiltinFunc
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for VisualScriptBuiltinFuncBuiltinFunc
impl PartialEq for VisualScriptBuiltinFuncBuiltinFunc
Source§fn eq(&self, other: &VisualScriptBuiltinFuncBuiltinFunc) -> bool
fn eq(&self, other: &VisualScriptBuiltinFuncBuiltinFunc) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for VisualScriptBuiltinFuncBuiltinFunc
impl Eq for VisualScriptBuiltinFuncBuiltinFunc
impl StructuralPartialEq for VisualScriptBuiltinFuncBuiltinFunc
Auto Trait Implementations§
impl Freeze for VisualScriptBuiltinFuncBuiltinFunc
impl RefUnwindSafe for VisualScriptBuiltinFuncBuiltinFunc
impl Send for VisualScriptBuiltinFuncBuiltinFunc
impl Sync for VisualScriptBuiltinFuncBuiltinFunc
impl Unpin for VisualScriptBuiltinFuncBuiltinFunc
impl UnwindSafe for VisualScriptBuiltinFuncBuiltinFunc
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more