24 package org.lightjason.agentspeak.action.builtin.math.shape;
26 import com.codepoetics.protonpack.StreamUtils;
35 import javax.annotation.Nonnegative;
36 import javax.annotation.Nonnull;
37 import java.util.List;
38 import java.util.stream.Collectors;
76 @Nonnull
final List<ITerm> p_argument, @Nonnull
final List<ITerm> p_return )
79 .map(
ITerm::<Number>raw )
80 .mapToDouble( Number::doubleValue )
82 .collect( Collectors.toList() );
84 if ( l_arguments.size() < 6 )
87 StreamUtils.windowed( l_arguments.stream().skip( 4 ), 2, 2 )
89 .map( i -> l_arguments.get( 0 ) <= i.get( 0 ) && i.get( 0 ) <= l_arguments.get( 2 )
90 && l_arguments.get( 1 ) <= i.get( 1 ) && i.get( 1 ) <= l_arguments.get( 3 )
93 .forEach( p_return::add );
base class of build-in actions for setting name by package/classname (without prefix character) ...
final int minimalArgumentNumber()
minimum number of arguments
static< N > IFuzzyValue< N > from( @Nonnull final N p_value)
factory
static final long serialVersionUID
serial id
common structure for execution definition
action check if a point within a rectangle.
execution context with local data
static Stream< ITerm > flatten( @Nonnull final Collection<? extends ITerm > p_terms)
flat term-in-term collection into a straight term list
result for an immutable fuzzy value
final IFuzzyValue< Boolean > execute(final boolean p_parallel, @Nonnull final IContext p_context, @Nonnull final List< ITerm > p_argument, @Nonnull final List< ITerm > p_return)
defines a plan-body operation
static< N > CRawTerm< N > from(final N p_value)
factory for a raw term
term structure for simple datatypes