A B C D E F G H I J L M N O P Q R S T U V W X Y
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- Abs - Class in picasso.parser.language.expressions
-
Represents the absolute value (Abs) function in the Picasso language.
- Abs(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Abs
-
Create an Abs expression tree that takes as a parameter the given expression
- AbsAnalyzer - Class in picasso.parser
-
Handles parsing the absolute value function.
- AbsAnalyzer() - Constructor for class picasso.parser.AbsAnalyzer
- AbsToken - Class in picasso.parser.tokens.functions
-
Class that represents the absolute value function.
- AbsToken() - Constructor for class picasso.parser.tokens.functions.AbsToken
- add(String, Command<Pixmap>) - Method in class picasso.view.ButtonPanel
-
Add the given Command as a button with the given button text.
- add(NamedCommand<Pixmap>) - Method in class picasso.view.ButtonPanel
-
Add the given Command as a button.
- Addition - Class in picasso.parser.language.expressions
-
Represents a function that takes two arguments and adds them together.
- Addition(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Addition
-
Creates a Addition expression tree with the given left and right parameters.
- AdditionAnalyzer - Class in picasso.parser
-
Handles parsing the plus or "addition function".
- AdditionAnalyzer() - Constructor for class picasso.parser.AdditionAnalyzer
- AdditionToken - Class in picasso.parser.tokens.operations
-
Represents the plus sign token
- AdditionToken() - Constructor for class picasso.parser.tokens.operations.AdditionToken
- addToHistory(String) - Method in class picasso.view.commands.TextBox
-
Adds the current expression to the list of recorded expressions.
- APOSTROPHE - Static variable in class picasso.parser.language.CharConstants
- assignor - Static variable in class picasso.parser.language.expressions.Variable
- Atan - Class in picasso.parser.language.expressions
- Atan(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Atan
-
Create a arc tan expression tree that creates a arc tan function
- AtanAnalyzer - Class in picasso.parser
- AtanAnalyzer() - Constructor for class picasso.parser.AtanAnalyzer
- AtanToken - Class in picasso.parser.tokens.functions
- AtanToken() - Constructor for class picasso.parser.tokens.functions.AtanToken
B
- BACK_SLASH - Static variable in class picasso.parser.language.CharConstants
- BANG - Static variable in class picasso.parser.language.CharConstants
- BinaryFunction - Class in picasso.parser.language.expressions
- BinaryFunction(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.BinaryFunction
-
Creates a binary expression tree with the given left and right parameters.
- BuiltinFunctionsReader - Class in picasso.parser.language
-
Handles reading the available built-in functions from a file.
- BuiltinFunctionsReader() - Constructor for class picasso.parser.language.BuiltinFunctionsReader
- ButtonPanel - Class in picasso.view
-
The collection of commands represented as buttons that apply to the active image.
- ButtonPanel(Canvas) - Constructor for class picasso.view.ButtonPanel
-
Create panel that will update the given picasso.view.
C
- canvas - Variable in class picasso.view.commands.Evaluator
- Canvas - Class in picasso.view
-
The canvas on which to present the image.
- Canvas(JFrame) - Constructor for class picasso.view.Canvas
- Canvas(JFrame, String) - Constructor for class picasso.view.Canvas
- capitalize(String) - Static method in class picasso.parser.tokens.TokenFactory
-
Capitalizes the first letter in the string
- CARET - Static variable in class picasso.parser.language.CharConstants
- Ceil - Class in picasso.parser.language.expressions
- Ceil(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Ceil
-
Create a Ceiling expression tree that takes as a parameter the given expression
- CeilAnalyzer - Class in picasso.parser
- CeilAnalyzer() - Constructor for class picasso.parser.CeilAnalyzer
- CeilToken - Class in picasso.parser.tokens.functions
- CeilToken() - Constructor for class picasso.parser.tokens.functions.CeilToken
- CharConstants - Class in picasso.parser.language
-
Symbolic names for character constants
- CharConstants() - Constructor for class picasso.parser.language.CharConstants
- CharToken - Class in picasso.parser.tokens.chars
-
A token represented by a single character, e.g., '*', ';', '[' and so on; the method equals compares a CharToken as equal to another CharToken encapsulating the same character.
- CharToken(int) - Constructor for class picasso.parser.tokens.chars.CharToken
-
Represents the given single-character token
- CharTokenFactory - Class in picasso.parser.tokens
-
Factory for generating CharToken objects ensuring that only one of any specific CharToken object is created (enforcing CharToken singleton-ness per char value)
- CharTokenFactory() - Constructor for class picasso.parser.tokens.CharTokenFactory
- clamp() - Method in class picasso.parser.language.expressions.RGBColor
-
Clamps the color components between COLOR_MIN and COLOR_MAX
- clamp(double) - Static method in class picasso.parser.language.expressions.RGBColor
-
Clamps the value to between COLOR_MIN and COLOR_MAX
- Clamp - Class in picasso.parser.language.expressions
- Clamp(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Clamp
-
Create a clamp expression tree that takes as a parameter the given expression
- ClampAnalyzer - Class in picasso.parser
- ClampAnalyzer() - Constructor for class picasso.parser.ClampAnalyzer
- ClampToken - Class in picasso.parser.tokens.functions
- ClampToken() - Constructor for class picasso.parser.tokens.functions.ClampToken
- COLOR_MAX - Static variable in class picasso.parser.language.expressions.RGBColor
- COLOR_MIN - Static variable in class picasso.parser.language.expressions.RGBColor
- ColorAnalyzer - Class in picasso.parser
-
SemanticAnalyzer for an RGB Color
- ColorAnalyzer() - Constructor for class picasso.parser.ColorAnalyzer
- ColorToken - Class in picasso.parser.tokens
-
Represents a color (using double values).
- ColorToken(double, double, double) - Constructor for class picasso.parser.tokens.ColorToken
-
Constructs a token representing the value
- COMMA - Static variable in class picasso.parser.language.CharConstants
- CommaAnalyzer - Class in picasso.parser
- CommaAnalyzer() - Constructor for class picasso.parser.CommaAnalyzer
- Command<T> - Interface in picasso.util
-
An abstract command class that operates on some target object.
- CommaToken - Class in picasso.parser.tokens.chars
-
Represents a comma in the Picasso programming language
- CommaToken() - Constructor for class picasso.parser.tokens.chars.CommaToken
- Constant - Class in picasso.parser.language.expressions
-
Represents a constant in the Picasso language.
- Constant(double) - Constructor for class picasso.parser.language.expressions.Constant
-
Creates a new Constant object that represents the given value
- ConstantAnalyzer - Class in picasso.parser
-
Analyzer for a constant, must be between [-1, 1]
- ConstantAnalyzer() - Constructor for class picasso.parser.ConstantAnalyzer
- Cos - Class in picasso.parser.language.expressions
-
Represents the cosine function for the picasso language.
- Cos(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Cos
-
Create a floor expression tree that takes as a parameter the given expression
- COS - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- CosAnalyzer - Class in picasso.parser
-
Handles parsing for the cosine function.
- CosAnalyzer() - Constructor for class picasso.parser.CosAnalyzer
- CosToken - Class in picasso.parser.tokens.functions
-
Represents the cosine function token
- CosToken() - Constructor for class picasso.parser.tokens.functions.CosToken
- createExpression(String) - Method in class picasso.view.commands.Evaluator
-
Method used to create expressions from an infix string:
D
- DEFAULT_COLOR - Static variable in class picasso.model.Pixmap
- DEFAULT_NAME - Static variable in class picasso.model.Pixmap
- DEFAULT_SIZE - Static variable in class picasso.model.Pixmap
- DIVIDE - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- Division - Class in picasso.parser.language.expressions
-
Represents a function that takes two arguments and divides them.
- Division(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Division
-
Creates a Division expression tree with the given left and right parameters.
- DivisionAnalyzer - Class in picasso.parser
-
Handles parsing the plus or "addition function".
- DivisionAnalyzer() - Constructor for class picasso.parser.DivisionAnalyzer
- DivisionToken - Class in picasso.parser.tokens.operations
-
Represents the division sign token
- DivisionToken() - Constructor for class picasso.parser.tokens.operations.DivisionToken
- DOLLAR - Static variable in class picasso.parser.language.CharConstants
- DOMAIN_MAX - Static variable in class picasso.view.commands.Evaluator
- DOMAIN_MIN - Static variable in class picasso.view.commands.Evaluator
E
- EOFToken - Class in picasso.parser.tokens
-
This represents an end-of-file token.
- EQUAL - Static variable in class picasso.parser.language.CharConstants
- equals(Object) - Method in class picasso.parser.language.expressions.BinaryFunction
- equals(Object) - Method in class picasso.parser.language.expressions.Constant
-
Determines if two Constants are equivalent (represent the same value.)
- equals(Object) - Method in class picasso.parser.language.expressions.RGBColor
- equals(Object) - Method in class picasso.parser.language.expressions.UnaryFunction
- equals(Object) - Method in class picasso.parser.language.expressions.Variable
-
Overrides equals to compare variables by their name.
- equals(Object) - Method in class picasso.parser.language.expressions.X
- equals(Object) - Method in class picasso.parser.language.expressions.Y
- equals(Object) - Method in class picasso.parser.tokens.chars.CharToken
- equals(Object) - Method in class picasso.parser.tokens.ColorToken
- equals(Object) - Method in class picasso.parser.tokens.EOFToken
- equals(Object) - Method in class picasso.parser.tokens.functions.FunctionToken
- equals(Object) - Method in class picasso.parser.tokens.IdentifierToken
- equals(Object) - Method in class picasso.parser.tokens.NumberToken
- equals(Object) - Method in class picasso.parser.tokens.PathToken
- Equals - Class in picasso.parser.language.expressions
-
Represents a function that takes two arguments and adds them together.
- Equals(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Equals
-
Creates an Equals object that consists of the variable name (left) and expression (right).
- EqualsAnalyzer - Class in picasso.parser
-
Class that impliments the EqualsAnalyzer class.
- EqualsAnalyzer() - Constructor for class picasso.parser.EqualsAnalyzer
- EqualsToken - Class in picasso.parser.tokens.chars
-
Represents the equals sign in the Picasso programming language
- EqualsToken() - Constructor for class picasso.parser.tokens.chars.EqualsToken
- ERROR_TOLERANCE - Static variable in class picasso.parser.language.expressions.RGBColor
-
for testing
- ErrorBox - Class in picasso.view.commands
-
This class creates a temporary error bar with a given string.
- ErrorBox(String) - Constructor for class picasso.view.commands.ErrorBox
-
Create an error bar for the user to read.
- EvaluatableExpression - Interface in picasso.parser.language
-
Classes that implement this interface can be evaluated for the image.
- evaluate(double, double) - Method in interface picasso.parser.language.EvaluatableExpression
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Abs
-
Evaluates this expression at the given x,y point by evaluating the absolute value of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Addition
-
Evaluates this expression at the given x, y point by adding the results of the left and right operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Atan
-
Evaluates this expression at the given x,y point by evaluating the arc tan of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Ceil
-
Evaluates this expression at the given x,y point by evaluating the ceil of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Clamp
-
clamp values greater than 1 to 1 and values less than -1 to -1
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Constant
-
The constant is like an RGB Color with the constant as each component.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Cos
-
Evaluates this expression at the given x,y point by evaluating the floor of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Division
-
Evaluates this expression at the given x, y point by dividing the results of the left and right operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Equals
-
Evaluates this assignment by creating a variable with the left node, and then storing the mapping in our static variable HashMap mapped to the right expression tree.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Exp
-
Evaluates this expression at the given x, y point by computing e raised to the power of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Exponent
-
Evaluates this expression at the given x, y point by exponentiating the results of the left and right operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Floor
-
Evaluates this expression at the given x,y point by evaluating the floor of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.ImageClip
- evaluate(double, double) - Method in class picasso.parser.language.expressions.ImageWrap
-
get the wrapped location of x and y.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Log
-
Evaluates this expression at the given x,y point by evaluating the log of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Modulus
-
Evaluates this expression at the given x, y point by dividing the results of the left and right operands and returning the remainder.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Multiplication
-
Evaluates this expression at the given x, y point by multiplying the results of the left and right operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Not
-
Evaluates this expression at the given (x, y) point by inverting the grayscale value.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Path
-
Steps will be to: 1.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.PerlinBW
-
get the wrapped location of x and y.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.PerlinColor
-
get the wrapped location of x and y.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.RGBColor
-
Returns this color
- evaluate(double, double) - Method in class picasso.parser.language.expressions.RgbToYCrCb
-
Gets the red, green, and blue values, then does a conversion on them and creates the new color.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Sin
-
Evaluates this expression at the given x,y point by evaluating the Sin of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Subtraction
-
Evaluates this expression at the given x, y point by subtracting the results of the left and right operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Tan
-
Evaluates this expression at the given x,y point by evaluating the tan of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Variable
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Wrap
-
Evaluates this expression at the given x,y point by wrapping values outside of the bounds of [-1,1] into the function the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.X
-
Returns the color represented by x.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Y
-
Returns the color represented by y.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.YCrCbToRGB
- evaluate(double, double) - Method in class picasso.parser.language.ExpressionTreeNode
-
Evaluate this expression, given x and y
- evaluate(RGBColor, RGBColor) - Method in enum picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- Evaluator - Class in picasso.view.commands
-
Evaluate an expression for each pixel in a image.
- Evaluator(String, Canvas) - Constructor for class picasso.view.commands.Evaluator
- execute(Pixmap) - Method in class picasso.view.commands.Evaluator
-
Evaluate an expression for each point in the image.
- execute(Pixmap) - Method in class picasso.view.commands.FractalEvaluator
- execute(Pixmap) - Method in class picasso.view.commands.NewWindow
- execute(Pixmap) - Method in class picasso.view.commands.Reader
-
Displays the image file on the given target.
- execute(Pixmap) - Method in class picasso.view.commands.Writer
- execute(Canvas) - Method in class picasso.view.commands.ErrorBox
-
Displays the error bar on the target canvas for 3 seconds.
- execute(T) - Method in interface picasso.util.Command
-
Implementations determine how to update the given target object
- execute(T) - Method in class picasso.util.NamedCommand
-
Run the given command.
- execute(T) - Method in class picasso.util.ThreadedCommand
-
Run the command on the target or cancel it if is already running.
- Exp - Class in picasso.parser.language.expressions
-
Represents the exponential function in the Picasso language.
- Exp(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Exp
-
Create an exponential expression tree that takes as a parameter the given expression
- ExpAnalyzer - Class in picasso.parser
-
Handles parsing the Exp function.
- ExpAnalyzer() - Constructor for class picasso.parser.ExpAnalyzer
- Exponent - Class in picasso.parser.language.expressions
-
Represents a function that takes two arguments and calculates the exponent.
- Exponent(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Exponent
-
Creates a Exponent expression tree with the given left and right parameters.
- ExponentAnalyzer - Class in picasso.parser
-
Handles parsing the caret or "exponent function".
- ExponentAnalyzer() - Constructor for class picasso.parser.ExponentAnalyzer
- ExponentToken - Class in picasso.parser.tokens.operations
-
Represents the plus sign token
- ExponentToken() - Constructor for class picasso.parser.tokens.operations.ExponentToken
- ExpressionTreeGenerator - Class in picasso.parser
-
Parses a string into an expression tree based on rules for arithmetic.
- ExpressionTreeGenerator() - Constructor for class picasso.parser.ExpressionTreeGenerator
- ExpressionTreeNode - Class in picasso.parser.language
-
All elements of the language (e.g., that make up ExpressionTree) should extend ExpressionTreeNode.
- ExpressionTreeNode() - Constructor for class picasso.parser.language.ExpressionTreeNode
- ExpToken - Class in picasso.parser.tokens.functions
-
Represents the Exp function token
- ExpToken() - Constructor for class picasso.parser.tokens.functions.ExpToken
F
- FileCommand<T> - Class in picasso.util
-
An abstract command that allows access to the file system through a JFileChooser dialog box.
- FileCommand(int) - Constructor for class picasso.util.FileCommand
-
Create command that will pop-up the given type of JFileChooser dialog
- Floor - Class in picasso.parser.language.expressions
-
Represents the floor function in the Picasso language.
- Floor(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Floor
-
Create a floor expression tree that takes as a parameter the given expression
- FloorAnalyzer - Class in picasso.parser
-
Handles parsing the floor function.
- FloorAnalyzer() - Constructor for class picasso.parser.FloorAnalyzer
- FloorToken - Class in picasso.parser.tokens.functions
-
Represents the floor function token
- FloorToken() - Constructor for class picasso.parser.tokens.functions.FloorToken
- FractalEvaluator - Class in picasso.view.commands
-
Evaluates an expression iteratively to create evolving fractal patterns.
- FractalEvaluator(String, Canvas, int) - Constructor for class picasso.view.commands.FractalEvaluator
- frame - Static variable in class picasso.Main
- Frame - Class in picasso.view
-
Main container for the Picasso application
- Frame(Dimension) - Constructor for class picasso.view.Frame
- FunctionToken - Class in picasso.parser.tokens.functions
-
Parent class for Tokens that represent functions.
- FunctionToken(String) - Constructor for class picasso.parser.tokens.functions.FunctionToken
G
- gelementsToValue - Static variable in class picasso.parser.language.ExpressionTreeNode
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.AbsAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.AdditionAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.AtanAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.CeilAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ClampAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ColorAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.CommaAnalyzer
-
method method returns null because we dont want to create a node from just the comma
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ConstantAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.CosAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.DivisionAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.EqualsAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ExpAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ExponentAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.FloorAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.IdentifierAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ImageClipAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ImageWrapAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.LogAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ModulusAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.MultiplicationAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.NotAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.PathAnalyzer
-
Need to generate an expression tree for the color analyzer I think this should be were we call the path of the image and convert pixel sizing into the [-1,1] range
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.PerlinBWAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.PerlinColorAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.RgbToYCrCbAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.SemanticAnalyzer
-
From a stack of tokens in postfix order, creates an expression tree
- generateExpressionTree(Stack<Token>) - Method in interface picasso.parser.SemanticAnalyzerInterface
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.SinAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.SubtractionAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.TanAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.UnaryFunctionAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.WrapAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.YCrCbToRGBAnalyzer
- getBlue() - Method in class picasso.parser.language.expressions.RGBColor
-
Returns the amount of blue, between COLOR_MIN and COLOR_MAX
- getBlue() - Method in class picasso.parser.tokens.ColorToken
- getCanvas() - Method in class picasso.view.Frame
- getColor(int, int) - Method in class picasso.model.Pixmap
-
Returns the color of the pixel at the given (x,y) coordinate if the coordinate is within the bounds of the image; otherwise returns the default color
- getFileName() - Method in class picasso.util.FileCommand
-
Pops up the appropriate file dialog box.
- getFunctionsList() - Static method in class picasso.parser.language.BuiltinFunctionsReader
-
Get the list of built-in function names
- getGreen() - Method in class picasso.parser.language.expressions.RGBColor
-
Returns the amount of green, between COLOR_MIN and COLOR_MAX
- getGreen() - Method in class picasso.parser.tokens.ColorToken
- getImages() - Static method in class picasso.parser.GetImagesFromFolder
- GetImagesFromFolder - Class in picasso.parser
- GetImagesFromFolder() - Constructor for class picasso.parser.GetImagesFromFolder
- getInfixString() - Method in class picasso.view.commands.Evaluator
- getInstance() - Static method in class picasso.parser.ConstantAnalyzer
- getInstance() - Static method in class picasso.parser.SemanticAnalyzer
-
Make sure that there is only one semantic analyzer for the application.
- getInstance() - Static method in class picasso.parser.tokens.EOFToken
- getName() - Method in class picasso.model.Pixmap
-
Returns the name of the image
- getName() - Method in class picasso.parser.language.expressions.Variable
- getName() - Method in class picasso.parser.tokens.IdentifierToken
-
Returns the identifier's name
- getName() - Method in class picasso.util.NamedCommand
-
Returns name of this command.
- getOrderValue() - Method in class picasso.parser.tokens.operations.AdditionToken
- getOrderValue() - Method in class picasso.parser.tokens.operations.DivisionToken
- getOrderValue() - Method in class picasso.parser.tokens.operations.ExponentToken
- getOrderValue() - Method in class picasso.parser.tokens.operations.ModulusToken
- getOrderValue() - Method in class picasso.parser.tokens.operations.MultiplicationToken
- getOrderValue() - Method in class picasso.parser.tokens.operations.NotToken
- getOrderValue() - Method in interface picasso.parser.tokens.operations.OperationInterface
- getOrderValue() - Method in class picasso.parser.tokens.operations.SubtractionToken
- getOrderValue() - Method in class picasso.parser.tokens.PathToken
- getPath() - Method in class picasso.parser.language.expressions.Path
- getPath() - Method in class picasso.parser.tokens.PathToken
- getPixmap() - Method in class picasso.view.Canvas
- getRed() - Method in class picasso.parser.language.expressions.RGBColor
-
Returns the amount of red, between COLOR_MIN and COLOR_MAX
- getRed() - Method in class picasso.parser.tokens.ColorToken
- getSemanticParser() - Method in class picasso.parser.Tokenizer
- getSize() - Method in class picasso.model.Pixmap
- getText() - Method in class picasso.view.commands.TextBox
-
Returns the textField to the user.
- getTextBox() - Method in class picasso.view.commands.TextBox
-
Returns the textField to the user.
- getToken() - Method in class picasso.parser.Tokenizer
- getToken(int) - Static method in class picasso.parser.tokens.CharTokenFactory
- getValue() - Method in class picasso.parser.language.expressions.Constant
-
Returns the value of the constant
H
- hashCode() - Method in class picasso.parser.language.expressions.Variable
-
Overrides hashCode to compute the hash based on the variable's name.
- hashCode() - Method in class picasso.parser.tokens.PathToken
I
- IdentifierAnalyzer - Class in picasso.parser
-
Handle an identifier token
- IdentifierAnalyzer() - Constructor for class picasso.parser.IdentifierAnalyzer
- IdentifierToken - Class in picasso.parser.tokens
-
Represents an identifier (a variable name)
- IdentifierToken(String) - Constructor for class picasso.parser.tokens.IdentifierToken
- ImageClip - Class in picasso.parser.language.expressions
-
Implements the imageClip function, which extends the edges of an image to the edges of the frame.
- ImageClip(ExpressionTreeNode, ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.ImageClip
- ImageClipAnalyzer - Class in picasso.parser
-
Analyzer for the imageClip function.
- ImageClipAnalyzer() - Constructor for class picasso.parser.ImageClipAnalyzer
- ImageClipToken - Class in picasso.parser.tokens.functions
-
Represents the imageClip function token.
- ImageClipToken() - Constructor for class picasso.parser.tokens.functions.ImageClipToken
- imageToDomainScale(int, int) - Method in class picasso.view.commands.Evaluator
-
Convert from image space to domain space.
- ImageWrap - Class in picasso.parser.language.expressions
- ImageWrap(ExpressionTreeNode, ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.ImageWrap
- ImageWrapAnalyzer - Class in picasso.parser
- ImageWrapAnalyzer() - Constructor for class picasso.parser.ImageWrapAnalyzer
- ImageWrapToken - Class in picasso.parser.tokens.functions
- ImageWrapToken() - Constructor for class picasso.parser.tokens.functions.ImageWrapToken
- ImprovedNoise - Class in picasso.model
-
JAVA REFERENCE IMPLEMENTATION OF IMPROVED NOISE - COPYRIGHT 2002 KEN PERLIN.
- ImprovedNoise() - Constructor for class picasso.model.ImprovedNoise
- infixString - Variable in class picasso.view.commands.Evaluator
- infixToPostfix(String) - Method in class picasso.parser.ExpressionTreeGenerator
-
This method converts the String infix expression to a Stack of tokens, which are in postfix.
- INVERT - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- isConstant() - Method in class picasso.parser.tokens.chars.CharToken
- isConstant() - Method in class picasso.parser.tokens.ColorToken
- isConstant() - Method in class picasso.parser.tokens.EOFToken
- isConstant() - Method in class picasso.parser.tokens.functions.FunctionToken
- isConstant() - Method in class picasso.parser.tokens.functions.ImageClipToken
- isConstant() - Method in class picasso.parser.tokens.functions.ImageWrapToken
- isConstant() - Method in class picasso.parser.tokens.functions.PerlinBWToken
- isConstant() - Method in class picasso.parser.tokens.functions.PerlinColorToken
- isConstant() - Method in class picasso.parser.tokens.IdentifierToken
- isConstant() - Method in class picasso.parser.tokens.NumberToken
- isConstant() - Method in class picasso.parser.tokens.PathToken
-
Not constantant
- isConstant() - Method in class picasso.parser.tokens.Token
-
Returns true if this token represents a constant, false otherwise
- isFunction() - Method in class picasso.parser.tokens.chars.CharToken
- isFunction() - Method in class picasso.parser.tokens.ColorToken
- isFunction() - Method in class picasso.parser.tokens.EOFToken
- isFunction() - Method in class picasso.parser.tokens.functions.FunctionToken
- isFunction() - Method in class picasso.parser.tokens.functions.ImageClipToken
- isFunction() - Method in class picasso.parser.tokens.functions.ImageWrapToken
- isFunction() - Method in class picasso.parser.tokens.functions.PerlinBWToken
- isFunction() - Method in class picasso.parser.tokens.functions.PerlinColorToken
- isFunction() - Method in class picasso.parser.tokens.IdentifierToken
- isFunction() - Method in class picasso.parser.tokens.NumberToken
- isFunction() - Method in class picasso.parser.tokens.PathToken
-
Not a function
- isFunction() - Method in class picasso.parser.tokens.Token
-
Returns true if this token represents a function, false otherwise
- isInBounds(int, int) - Method in class picasso.model.Pixmap
-
Determine if the given (x,y) coordinate is within the bounds of this image.
- isValidValue(double) - Static method in class picasso.parser.tokens.ColorToken
J
- JAVA_COLOR_MAX - Static variable in class picasso.parser.language.expressions.RGBColor
L
- LEFT_BRACKET - Static variable in class picasso.parser.language.CharConstants
- LEFT_PAREN - Static variable in class picasso.parser.language.CharConstants
- LeftBracketToken - Class in picasso.parser.tokens.chars
-
Represents a left bracket in the Picasso programming language
- LeftBracketToken() - Constructor for class picasso.parser.tokens.chars.LeftBracketToken
- LeftParenToken - Class in picasso.parser.tokens.chars
-
Represents a left parenthesis in the Picasso programming language
- LeftParenToken() - Constructor for class picasso.parser.tokens.chars.LeftParenToken
- Log - Class in picasso.parser.language.expressions
- Log(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Log
-
Create a log expression tree that takes as a parameter the given expression
- LogAnalyzer - Class in picasso.parser
-
Handles parsing for log function
- LogAnalyzer() - Constructor for class picasso.parser.LogAnalyzer
- LogToken - Class in picasso.parser.tokens.functions
-
Represents the log function token
- LogToken() - Constructor for class picasso.parser.tokens.functions.LogToken
M
- main(String[]) - Static method in class picasso.Main
- main(String[]) - Static method in class picasso.parser.Tokenizer
- Main - Class in picasso
-
Starting point for Picasso.
- Main() - Constructor for class picasso.Main
- makeExpression(String) - Method in class picasso.parser.ExpressionTreeGenerator
-
Converts the given string into expression tree for easier manipulation.
- match(Token) - Method in class picasso.parser.Tokenizer
-
Try to match a token.
- MINUS - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- MINUS - Static variable in class picasso.parser.language.CharConstants
- MOD - Static variable in class picasso.parser.language.CharConstants
- Modulus - Class in picasso.parser.language.expressions
-
Represents a function that takes two arguments and mods them.
- Modulus(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Modulus
-
Creates a Modulus expression tree with the given left and right parameters.
- ModulusAnalyzer - Class in picasso.parser
-
Handles parsing the plus or "addition function".
- ModulusAnalyzer() - Constructor for class picasso.parser.ModulusAnalyzer
- ModulusToken - Class in picasso.parser.tokens.operations
-
Represents the modulus token
- ModulusToken() - Constructor for class picasso.parser.tokens.operations.ModulusToken
- Multiplication - Class in picasso.parser.language.expressions
-
Represents a function that takes two arguments and adds them together.
- Multiplication(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Multiplication
-
Creates a Multiplication expression tree with the given left and right parameters.
- MultiplicationAnalyzer - Class in picasso.parser
-
Handles parsing the multiplication or "multiplication function".
- MultiplicationAnalyzer() - Constructor for class picasso.parser.MultiplicationAnalyzer
- MultiplicationToken - Class in picasso.parser.tokens.operations
-
Represents the multiplication sign token
- MultiplicationToken() - Constructor for class picasso.parser.tokens.operations.MultiplicationToken
N
- NamedCommand<T> - Class in picasso.util
-
A command with a name (e.g., to display on a button)
- NamedCommand(String, Command<T>) - Constructor for class picasso.util.NamedCommand
-
Create command with a name and an action.
- NewWindow - Class in picasso.view.commands
-
Creates a new window for users to view multiple images at once.
- NewWindow() - Constructor for class picasso.view.commands.NewWindow
- nextToken() - Method in class picasso.parser.Tokenizer
-
get the next token and store it for retrieval by getToken()
- noise(double, double, double) - Static method in class picasso.model.ImprovedNoise
- Not - Class in picasso.parser.language.expressions
-
Represents a unary not (!) function that inverts a grayscale constant value.
- Not(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Not
-
Creates a Not expression tree with the given parameter.
- NotAnalyzer - Class in picasso.parser
-
Handles parsing the unary not (!) function.
- NotAnalyzer() - Constructor for class picasso.parser.NotAnalyzer
- NotToken - Class in picasso.parser.tokens.operations
-
Represents the unary not (!) token.
- NotToken() - Constructor for class picasso.parser.tokens.operations.NotToken
- NumberToken - Class in picasso.parser.tokens
-
Represents a number (using double values).
- NumberToken(double) - Constructor for class picasso.parser.tokens.NumberToken
-
Constructs a token representing value
O
- OperationInterface - Interface in picasso.parser.tokens.operations
-
Parent class for Tokens that represent functions.
P
- paint(Graphics) - Method in class picasso.model.Pixmap
- paintComponent(Graphics) - Method in class picasso.view.Canvas
- parse(StreamTokenizer) - Static method in class picasso.parser.tokens.TokenFactory
- ParseException - Exception in picasso.parser
-
Describe an exception that occurred during parsing.
- ParseException(String) - Constructor for exception picasso.parser.ParseException
- parseTokens(String) - Method in class picasso.parser.Tokenizer
-
Parses the given string into a list of Picasso tokens (in order)
- Path - Class in picasso.parser.language.expressions
- Path(String) - Constructor for class picasso.parser.language.expressions.Path
- PathAnalyzer - Class in picasso.parser
- PathAnalyzer() - Constructor for class picasso.parser.PathAnalyzer
- PathToken - Class in picasso.parser.tokens
- PathToken(String) - Constructor for class picasso.parser.tokens.PathToken
- PERIOD - Static variable in class picasso.parser.language.CharConstants
- PerlinBW - Class in picasso.parser.language.expressions
- PerlinBW(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.PerlinBW
- PERLINBW - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- PerlinBWAnalyzer - Class in picasso.parser
- PerlinBWAnalyzer() - Constructor for class picasso.parser.PerlinBWAnalyzer
- PerlinBWToken - Class in picasso.parser.tokens.functions
- PerlinBWToken() - Constructor for class picasso.parser.tokens.functions.PerlinBWToken
- PerlinColor - Class in picasso.parser.language.expressions
- PerlinColor(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.PerlinColor
- PERLINCOLOR - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- PerlinColorAnalyzer - Class in picasso.parser
- PerlinColorAnalyzer() - Constructor for class picasso.parser.PerlinColorAnalyzer
- PerlinColorToken - Class in picasso.parser.tokens.functions
- PerlinColorToken() - Constructor for class picasso.parser.tokens.functions.PerlinColorToken
- perlinNoise(double, double) - Static method in class picasso.parser.language.expressions.PerlinBW
- perlinNoise(double, double) - Static method in class picasso.parser.language.expressions.PerlinColor
- picasso - package picasso
- picasso.model - package picasso.model
- picasso.parser - package picasso.parser
- picasso.parser.language - package picasso.parser.language
- picasso.parser.language.expressions - package picasso.parser.language.expressions
- picasso.parser.tokens - package picasso.parser.tokens
- picasso.parser.tokens.chars - package picasso.parser.tokens.chars
- picasso.parser.tokens.functions - package picasso.parser.tokens.functions
- picasso.parser.tokens.operations - package picasso.parser.tokens.operations
- picasso.util - package picasso.util
- picasso.view - package picasso.view
- picasso.view.commands - package picasso.view.commands
- Pixmap - Class in picasso.model
-
Class for manipulating graphics images, originally developed in C++.
- Pixmap() - Constructor for class picasso.model.Pixmap
-
Create a default pixmap (300x300 black)
- Pixmap(int, int) - Constructor for class picasso.model.Pixmap
-
Create a black pixmap with given width and height
- Pixmap(int, int, Color) - Constructor for class picasso.model.Pixmap
-
Create a pixmap with given width and height and filled with given initial color
- Pixmap(Dimension) - Constructor for class picasso.model.Pixmap
-
Create a black pixmap with given size
- Pixmap(String) - Constructor for class picasso.model.Pixmap
-
Create a pixmap from the given local file
- Pixmap(Pixmap) - Constructor for class picasso.model.Pixmap
-
Create this image as a copy of the given image
- PLUS - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- PLUS - Static variable in class picasso.parser.language.CharConstants
Q
- QUESTION - Static variable in class picasso.parser.language.CharConstants
- QUOTE - Static variable in class picasso.parser.language.CharConstants
- QuoteToken - Class in picasso.parser.tokens.chars
- QuoteToken() - Constructor for class picasso.parser.tokens.chars.QuoteToken
R
- randomExpression(int, boolean) - Static method in class picasso.parser.RandomExpressionGenerator
- RandomExpressionGenerator - Class in picasso.parser
- RandomExpressionGenerator() - Constructor for class picasso.parser.RandomExpressionGenerator
- read(String) - Method in class picasso.model.Pixmap
-
Read the image named by fileName
- Reader - Class in picasso.view.commands
-
Open the chosen image file and display in the Pixmap target.
- Reader(Canvas) - Constructor for class picasso.view.commands.Reader
-
Creates a Reader object, which prompts users for image files to open
- ReferenceForExpressionEvaluations - Enum in picasso.parser.language.expressions
-
This is the original implementation.
- refresh() - Method in class picasso.view.Canvas
- RGB2YCRCR - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- RGBColor - Class in picasso.parser.language.expressions
-
Special color class for Picasso.
- RGBColor(double, double, double) - Constructor for class picasso.parser.language.expressions.RGBColor
-
Create an RGBColor object that has the given amount of red, green, and blue.
- RGBColor(Color) - Constructor for class picasso.parser.language.expressions.RGBColor
-
Copy a Java Color object into a Picasso RGBColor object
- RgbToYCrCb - Class in picasso.parser.language.expressions
-
Converts RGB colors to YCrCb color space.
- RgbToYCrCb(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.RgbToYCrCb
- RgbToYCrCbAnalyzer - Class in picasso.parser
-
Handles parsing the RgbtoYCrCb function.
- RgbToYCrCbAnalyzer() - Constructor for class picasso.parser.RgbToYCrCbAnalyzer
- RgbToYCrCbToken - Class in picasso.parser.tokens.functions
-
Represents the rgbToYCrCb function token.
- RgbToYCrCbToken() - Constructor for class picasso.parser.tokens.functions.RgbToYCrCbToken
- RIGHT_BRACKET - Static variable in class picasso.parser.language.CharConstants
- RIGHT_PAREN - Static variable in class picasso.parser.language.CharConstants
- RightBracketToken - Class in picasso.parser.tokens.chars
-
Represents a right bracket in the Picasso programming language
- RightBracketToken() - Constructor for class picasso.parser.tokens.chars.RightBracketToken
- RightParenToken - Class in picasso.parser.tokens.chars
-
Represents a right parenthesis in the Picasso programming language
- RightParenToken() - Constructor for class picasso.parser.tokens.chars.RightParenToken
S
- SemanticAnalyzer - Class in picasso.parser
-
SemanticAnalyzer calls appropriate SemanticAnalyzer for the given token
- SemanticAnalyzerInterface - Interface in picasso.parser
-
The interface that all Semantic Analyzers must implement
- setColor(int, int, Color) - Method in class picasso.model.Pixmap
- setCurrToken(Token) - Method in class picasso.parser.Tokenizer
- setSize(int, int) - Method in class picasso.model.Pixmap
-
Changes the size of the image to the given width and height
- setSize(Dimension) - Method in class picasso.model.Pixmap
- setSize(Dimension) - Method in class picasso.view.Canvas
- setText(String) - Method in class picasso.view.commands.TextBox
- simplify() - Method in class picasso.parser.language.expressions.Addition
- simplify() - Method in class picasso.parser.language.expressions.BinaryFunction
-
recursive simplify method that will be specified for Multiply and Add
- simplify() - Method in class picasso.parser.language.expressions.Division
- simplify() - Method in class picasso.parser.language.expressions.Exponent
- simplify() - Method in class picasso.parser.language.expressions.Modulus
- simplify() - Method in class picasso.parser.language.expressions.Multiplication
- simplify() - Method in class picasso.parser.language.expressions.Not
-
Simplifies the Not expression if possible.
- simplify() - Method in class picasso.parser.language.expressions.Subtraction
- simplify() - Method in class picasso.parser.language.ExpressionTreeNode
- Sin - Class in picasso.parser.language.expressions
-
Represents the sin function in the Picasso language.
- Sin(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Sin
-
Create a sin expression tree that takes as a parameter the given expression
- SinAnalyzer - Class in picasso.parser
-
Handles parsing the Sin function.
- SinAnalyzer() - Constructor for class picasso.parser.SinAnalyzer
- SinToken - Class in picasso.parser.tokens.functions
-
Represents the sin function token
- SinToken() - Constructor for class picasso.parser.tokens.functions.SinToken
- SIZE - Static variable in class picasso.Main
- SLASH - Static variable in class picasso.parser.language.CharConstants
- STAR - Static variable in class picasso.parser.language.CharConstants
- Subtraction - Class in picasso.parser.language.expressions
-
Represents a function that takes two arguments and subtracts them.
- Subtraction(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Subtraction
-
Creates a Subtraction expression tree with the given left and right parameters.
- SubtractionAnalyzer - Class in picasso.parser
-
Handles parsing the minus or "subtraction function".
- SubtractionAnalyzer() - Constructor for class picasso.parser.SubtractionAnalyzer
- SubtractionToken - Class in picasso.parser.tokens.operations
-
Represents the minus sign token
- SubtractionToken() - Constructor for class picasso.parser.tokens.operations.SubtractionToken
T
- Tan - Class in picasso.parser.language.expressions
- Tan(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Tan
-
Create a tan expression tree that creates a tan function
- TanAnalyzer - Class in picasso.parser
- TanAnalyzer() - Constructor for class picasso.parser.TanAnalyzer
- TanToken - Class in picasso.parser.tokens.functions
- TanToken() - Constructor for class picasso.parser.tokens.functions.TanToken
- TextBox - Class in picasso.view.commands
-
This class creates textBox objects.
- TextBox() - Constructor for class picasso.view.commands.TextBox
-
Constructs a text box.
- ThreadedCommand<T> - Class in picasso.util
-
Execute a long running command in a separate thread and display the results in a component while the command is running.
- ThreadedCommand(JComponent, Command<T>) - Constructor for class picasso.util.ThreadedCommand
-
Create a command that runs the given command and updates the given view over time.
- TILDE - Static variable in class picasso.parser.language.CharConstants
- TIMES - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- toDouble(int) - Static method in class picasso.parser.language.expressions.RGBColor
-
Convert the Java color's component value (from [0,255]) to the [-1,1] range needed for Picasso
- toInt(double) - Static method in class picasso.parser.language.expressions.RGBColor
-
Convert the Picasso color's component value (from [-1,1] to the Java color's component (from [0,255])
- toJavaColor() - Method in class picasso.parser.language.expressions.RGBColor
-
Converts to Java's Color class
- Token - Class in picasso.parser.tokens
-
Represents tokens in the Picasso programming language
- Token(String) - Constructor for class picasso.parser.tokens.Token
-
Creates a token with the given description
- TokenFactory - Class in picasso.parser.tokens
-
Looks at a generic token and creates the appropriate token type
- TokenFactory() - Constructor for class picasso.parser.tokens.TokenFactory
- Tokenizer - Class in picasso.parser
-
A tokenizer for the Picasso language.
- Tokenizer() - Constructor for class picasso.parser.Tokenizer
- toString() - Method in class picasso.parser.language.expressions.BinaryFunction
-
/** Returns the string representation of the function in the format "
: " - toString() - Method in class picasso.parser.language.expressions.Constant
-
Returns the constant as a string formatted as "Constant:
" - toString() - Method in class picasso.parser.language.expressions.RGBColor
-
Returns the RGBColor as a String in the form "Color: <red> <green> <blue>"
- toString() - Method in class picasso.parser.language.expressions.UnaryFunction
-
Returns the string representation of the function in the format "
: " - toString() - Method in class picasso.parser.language.expressions.X
-
Returns "x", the representation of this variable in Picasso expressions
- toString() - Method in class picasso.parser.language.expressions.Y
-
Returns "y", the representation of this variable in Picasso expressions
- toString() - Method in class picasso.parser.tokens.chars.CharToken
- toString() - Method in class picasso.parser.tokens.ColorToken
- toString() - Method in class picasso.parser.tokens.IdentifierToken
- toString() - Method in class picasso.parser.tokens.NumberToken
- toString() - Method in class picasso.parser.tokens.Token
-
Represents the token by its description
U
- UnaryFunction - Class in picasso.parser.language.expressions
-
Represents a function that takes one argument.
- UnaryFunction(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.UnaryFunction
- UnaryFunctionAnalyzer - Class in picasso.parser
-
Abstract class that parses a function that takes one expression as a parameter.
- UnaryFunctionAnalyzer() - Constructor for class picasso.parser.UnaryFunctionAnalyzer
- UNDER_SCORE - Static variable in class picasso.parser.language.CharConstants
V
- value() - Method in class picasso.parser.tokens.chars.CharToken
- value() - Method in class picasso.parser.tokens.NumberToken
- valueOf(String) - Static method in enum picasso.parser.language.expressions.ReferenceForExpressionEvaluations
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum picasso.parser.language.expressions.ReferenceForExpressionEvaluations
-
Returns an array containing the constants of this enum type, in the order they are declared.
- Variable - Class in picasso.parser.language.expressions
-
Represents a variable
- Variable(String) - Constructor for class picasso.parser.language.expressions.Variable
W
- Wrap - Class in picasso.parser.language.expressions
- Wrap(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Wrap
-
Create a wrap expression tree that takes as a parameter the given expression
- wrapAlgo(double) - Static method in class picasso.parser.language.expressions.Wrap
- WrapAnalyzer - Class in picasso.parser
- WrapAnalyzer() - Constructor for class picasso.parser.WrapAnalyzer
- WrapToken - Class in picasso.parser.tokens.functions
- WrapToken() - Constructor for class picasso.parser.tokens.functions.WrapToken
- write(String) - Method in class picasso.model.Pixmap
-
Write the current image to a file as a jpg.
- Writer - Class in picasso.view.commands
-
Save the chosen file.
- Writer() - Constructor for class picasso.view.commands.Writer
X
- X - Class in picasso.parser.language.expressions
-
Represents x in a Picasso expression
- X - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- X() - Constructor for class picasso.parser.language.expressions.X
Y
- Y - Class in picasso.parser.language.expressions
-
Represents y in a Picasso expression
- Y - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- Y() - Constructor for class picasso.parser.language.expressions.Y
- YCRC2RGBR - picasso.parser.language.expressions.ReferenceForExpressionEvaluations
- YCrCbToRGB - Class in picasso.parser.language.expressions
-
Converts YCrCb colors to RGB color space.
- YCrCbToRGB(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.YCrCbToRGB
- YCrCbToRGBAnalyzer - Class in picasso.parser
-
Handles parsing the YCrCbToRgb function.
- YCrCbToRGBAnalyzer() - Constructor for class picasso.parser.YCrCbToRGBAnalyzer
- YCrCbToRGBToken - Class in picasso.parser.tokens.functions
-
Represents the yCrCbToRGB function token.
- YCrCbToRGBToken() - Constructor for class picasso.parser.tokens.functions.YCrCbToRGBToken
All Classes All Packages