Sha256: f97ed18458106976fb65b4aa0a520cd0aa759c5dd8d958a5f91274f5b3e13d92
Contents?: true
Size: 696 Bytes
Versions: 11
Compression:
Stored size: 696 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 649 # - Name: Multiplier # - Type: R # - Min/Max: 1/10 # - Description: Value to be used as a multiplier to obtain a new value class E649 < Eddy::Models::Element::R # @param val [Float] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "649" @name = "Multiplier" @description = "Value to be used as a multiplier to obtain a new value" super( min: 1, max: 10, req: req, ref: ref, val: val, ) end end end end
Version data entries
11 entries across 11 versions & 1 rubygems