Contains several internal drawing commands. Only the composite command is sent to the ViewportPainter.
The composite command is responsible for the running all internal commands. @author Vitalus @since 1.1.0
203204205206207208209
* * @param commandsArray * @return */ public IDrawCommand createCompositeDrawCommand(IDrawCommand[] commandsArray){ return new CompositeDrawCommand(commandsArray); }
213214215216217218219
* * @param commandsList * @return */ public IDrawCommand createCompositeDrawCommand(List<? extends IDrawCommand> commandsList){ return new CompositeDrawCommand(commandsList); }