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;
75 @Nonnull
final List<ITerm> p_argument, @Nonnull
final List<ITerm> p_return )
78 .map(
ITerm::<Number>raw )
79 .mapToDouble( Number::doubleValue )
81 .collect( Collectors.toList() );
82 if ( l_arguments.size() < 8 )
85 StreamUtils.windowed( l_arguments.stream().skip( 6 ), 2, 2 )
89 l_arguments.get( 1 ) * l_arguments.get( 4 )
90 - l_arguments.get( 0 ) * l_arguments.get( 5 )
91 + ( l_arguments.get( 5 ) - l_arguments.get( 1 ) ) * i.get( 0 )
92 + ( l_arguments.get( 0 ) - l_arguments.get( 4 ) ) * i.get( 1 )
96 l_arguments.get( 0 ) * l_arguments.get( 3 )
97 - l_arguments.get( 1 ) * l_arguments.get( 2 )
98 + ( l_arguments.get( 1 ) - l_arguments.get( 3 ) ) * i.get( 0 )
99 + ( l_arguments.get( 2 ) - l_arguments.get( 0 ) ) * i.get( 1 )
102 .map( i -> ( i.get( 2 ) > 0 ) && ( i.get( 3 ) > 0 )
103 && ( i.get( 2 ) + i.get( 3 ) < -l_arguments.get( 3 ) * l_arguments.get( 4 )
104 + l_arguments.get( 1 ) * ( -l_arguments.get( 2 ) + l_arguments.get( 3 ) )
105 + l_arguments.get( 0 ) * ( l_arguments.get( 3 ) - l_arguments.get( 5 ) )
106 + l_arguments.get( 2 ) * l_arguments.get( 5 ) )
109 .forEach( p_return::add );
static final long serialVersionUID
serial id
base class of build-in actions for setting name by package/classname (without prefix character) ...
static< N > IFuzzyValue< N > from( @Nonnull final N p_value)
factory
common structure for execution definition
execution context with local data
action check if a point is within a triangle.
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 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 int minimalArgumentNumber()
minimum number of arguments
static< N > CRawTerm< N > from(final N p_value)
factory for a raw term
term structure for simple datatypes