A B C D E F G 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
- AbsAnalyzer - Class in picasso.parser
-
Handles parsing the abs function.
- AbsAnalyzer() - Constructor for class picasso.parser.AbsAnalyzer
- Absolute - Class in picasso.parser.language.expressions
-
Represents the abs function in the Picasso language.
- Absolute(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Absolute
-
Create a abs expression tree that takes as a parameter the given expression
- AbsToken - Class in picasso.parser.tokens.functions
-
Represents the abs function token
- AbsToken() - Constructor for class picasso.parser.tokens.functions.AbsToken
- actionPerformed(ActionEvent) - Method in class picasso.view.Text
-
Evaluates expression when user presses enter.
- 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.
- ADD_OR_SUBTRACT - Static variable in interface picasso.parser.tokens.operations.OperationInterface
- Addition - Class in picasso.parser.language.expressions
-
Represents the addition binary operation in the Picasso language
- Addition(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Addition
-
Create a addition expression tree that takes as a parameter the two operands
- APOSTROPHE - Static variable in class picasso.parser.language.CharConstants
- ArcTangent - Class in picasso.parser.language.expressions
-
Represents the arc tangent function in the Picasso language.
- ArcTangent(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.ArcTangent
-
Create an arc tangent expression tree that takes as a parameter the given expression
- ASSIGNMENT - Static variable in interface picasso.parser.tokens.operations.OperationInterface
- AtanAnalyzer - Class in picasso.parser
-
Handles arc tangent function.
- AtanAnalyzer() - Constructor for class picasso.parser.AtanAnalyzer
- AtanToken - Class in picasso.parser.tokens.functions
-
Represents the arc tangent function token
- 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
- BinaryOperation - Class in picasso.parser.language.expressions
-
Represents an operation that takes two arguments.
- BinaryOperation(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.BinaryOperation
- buildRandomTree(String) - Method in class picasso.parser.language.expressions.StringToExpression
-
Creates the tree of the random ExpressionTreeNode's
- 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, Frame) - Constructor for class picasso.view.ButtonPanel
-
Create panel that will update the given picasso.view.
C
- 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
- CeilAnalyzer - Class in picasso.parser
-
Handles parsing the ceiling function.
- CeilAnalyzer() - Constructor for class picasso.parser.CeilAnalyzer
- Ceiling - Class in picasso.parser.language.expressions
-
Represents the ceiling function in the Picasso language.
- Ceiling(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Ceiling
-
Create a ceiling expression tree that takes as a parameter the given expression
- CeilToken - Class in picasso.parser.tokens.functions
-
Represents the ceiling function token
- 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
-
Represents the clamp function in the Picasso language.
- Clamp(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Clamp
-
Create a clamp expression tree that applies clamp() to the given parameter.
- ClampAnalyzer - Class in picasso.parser
-
Handles parsing the Clamp function.
- ClampAnalyzer() - Constructor for class picasso.parser.ClampAnalyzer
- ClampToken - Class in picasso.parser.tokens.functions
-
Represents the sine function token
- ClampToken() - Constructor for class picasso.parser.tokens.functions.ClampToken
- clampVal(double) - Method in class picasso.parser.language.expressions.ImageClip
- 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
- 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
- CONSTANT - Static variable in interface picasso.parser.tokens.operations.OperationInterface
- ConstantAnalyzer - Class in picasso.parser
-
Analyzer for a constant, must be between [-1, 1]
- ConstantAnalyzer() - Constructor for class picasso.parser.ConstantAnalyzer
- Copy - Class in picasso.view.commands
-
Evaluate an expression and make a copy.
- Copy(JTextField, Frame) - Constructor for class picasso.view.commands.Copy
-
Create Evaluator object using JTextField.
- copyPixmap(Pixmap) - Method in class picasso.view.Canvas
- CosAnalyzer - Class in picasso.parser
-
Handles parsing the cosine function.
- CosAnalyzer() - Constructor for class picasso.parser.CosAnalyzer
- Cosine - Class in picasso.parser.language.expressions
-
Represents the cosine function in the Picasso language.
- Cosine(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Cosine
-
Create a cosine expression tree that takes as a parameter the given expression
- CosToken - Class in picasso.parser.tokens.functions
-
Represents the cosine function token
- CosToken() - Constructor for class picasso.parser.tokens.functions.CosToken
D
- DebugController - Class in picasso.view
-
Represents the debug controller class for the GUI
- DebugController(Canvas) - Constructor for class picasso.view.DebugController
- 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
- displayError(String) - Method in class picasso.view.Frame
- DivideAnalyzer - Class in picasso.parser
-
Handles parsing the divide or "division function".
- DivideAnalyzer() - Constructor for class picasso.parser.DivideAnalyzer
- DivideToken - Class in picasso.parser.tokens.operations
-
Represents the divide sign token
- DivideToken() - Constructor for class picasso.parser.tokens.operations.DivideToken
- Division - Class in picasso.parser.language.expressions
-
Represents the division binary operation in the Picasso language
- Division(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Division
-
Create a division expression tree that takes as a parameter the two operands
- DOLLAR - Static variable in class picasso.parser.language.CharConstants
- DOMAIN_MAX - Static variable in class picasso.view.commands.Copy
- DOMAIN_MAX - Static variable in class picasso.view.commands.Evaluator
- DOMAIN_MIN - Static variable in class picasso.view.commands.Copy
- DOMAIN_MIN - Static variable in class picasso.view.commands.Evaluator
- domainScaleToImage(double, int) - Method in class picasso.parser.language.expressions.Image
E
- EOFToken - Class in picasso.parser.tokens
-
This represents an end-of-file token.
- Equal - Class in picasso.parser.language.expressions
-
Represents the equal operation in the picasso language.
- Equal(Variable, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Equal
-
Create a Equals expression tree that takes as a variable and expression as two operands
- EQUAL - Static variable in class picasso.parser.language.CharConstants
- EqualAnalyzer - Class in picasso.parser
-
Handles parsing the equals/assignment operator
- EqualAnalyzer() - Constructor for class picasso.parser.EqualAnalyzer
- equals(Object) - Method in class picasso.parser.language.expressions.BinaryOperation
- 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.Image
- equals(Object) - Method in class picasso.parser.language.expressions.ImageClip
- equals(Object) - Method in class picasso.parser.language.expressions.ImageWrap
- equals(Object) - Method in class picasso.parser.language.expressions.PerlinBW
- equals(Object) - Method in class picasso.parser.language.expressions.PerlinColor
- 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.UnaryOperation
- 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
- EqualToken - Class in picasso.parser.tokens.operations
-
Represents the equal sign token
- EqualToken() - Constructor for class picasso.parser.tokens.operations.EqualToken
- ERROR_TOLERANCE - Static variable in class picasso.parser.language.expressions.RGBColor
-
for testing
- 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.Absolute
-
Evaluates this expression at the given x,y point by evaluating the cosine 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 evaluating the sum of the two operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.ArcTangent
-
Evaluates this expression at the given x,y point by evaluating the arc tangent of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Ceiling
-
Evaluates this expression at the given x,y point by evaluating the ceiling of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Clamp
-
Evaluates this expression at (x, y) by clamping each RGB component to [-1, 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.Cosine
-
Evaluates this expression at the given x,y point by evaluating the cosine of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Division
-
Evaluates this expression at the given x,y evaluating the quotient.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Equal
-
Evaluates this expression at the given x,y point by evaluating the expression
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Exponential
-
Evaluates this expression at the given x,y point by evaluating the exponential of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Exponentiation
-
Evaluates this expression at the given x,y point by evaluating the exponential of the function's parameter.
- 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.Image
- evaluate(double, double) - Method in class picasso.parser.language.expressions.ImageClip
- evaluate(double, double) - Method in class picasso.parser.language.expressions.ImageWrap
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Logarithm
-
Evaluates this expression at (x, y) by taking the sine of each RGB component.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Multiplication
-
Evaluates this expression at the given x,y point by evaluating the product of the two operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Negation
-
Evaluates this expression at the given x,y point by evaluating the sum of the two operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.PerlinBW
-
Evaluates this expression at (x, y) using Perlin noise to generate colors.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.PerlinColor
-
Evaluates this expression at (x, y) using Perlin noise to generate colors.
- 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
-
Evaluates this expression at the given x,y point by evaluating the rgbToYCrCb value of the two operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Sine
-
Evaluates this expression at (x, y) by taking the sine of each RGB component.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.StringToExpression
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Subtraction
-
Evaluates this expression at the given x,y point by evaluating the difference of the two operands.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Tangent
-
Evaluates this expression at the given x,y point by evaluating the tangent of the function's parameter.
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Variable
-
Retrieves the color evaluated from the expression, which is accessed by the var name
- evaluate(double, double) - Method in class picasso.parser.language.expressions.Wrap
-
Evaluates this expression at the given x,y point by wraping the x or y of the param.
- 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
-
Evaluates this expression at the given x,y point by evaluating the YCrCbToRGB value of the two operands.
- evaluate(double, double) - Method in class picasso.parser.language.ExpressionTreeNode
-
Evaluate this expression, given x and y
- Evaluator - Class in picasso.view.commands
-
Evaluate an expression for each pixel in a image.
- Evaluator(String) - Constructor for class picasso.view.commands.Evaluator
- execute(Pixmap) - Method in class picasso.view.commands.Copy
-
Evaluate an expression for each point in the image.
- execute(Pixmap) - Method in class picasso.view.commands.Evaluator
- execute(Pixmap) - Method in class picasso.view.commands.ExpressionReader
- 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(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.
- ExpAnalyzer - Class in picasso.parser
-
Handles parsing the exponential function.
- ExpAnalyzer() - Constructor for class picasso.parser.ExpAnalyzer
- EXPONENT - Static variable in interface picasso.parser.tokens.operations.OperationInterface
- Exponential - Class in picasso.parser.language.expressions
-
Represents the exponential function in the Picasso language.
- Exponential(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Exponential
-
Create a exponential expression tree that takes as a parameter the given expression
- Exponentiation - Class in picasso.parser.language.expressions
-
Represents the exponential function in the Picasso language.
- Exponentiation(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Exponentiation
-
Create a exponential expression tree that takes as a parameter the given expression
- ExponentiationAnalyzer - Class in picasso.parser
-
Handles parsing the exponentiation or "exponential function".
- ExponentiationAnalyzer() - Constructor for class picasso.parser.ExponentiationAnalyzer
- ExponentiationToken - Class in picasso.parser.tokens.operations
-
Represents the exponentiation sign token
- ExponentiationToken() - Constructor for class picasso.parser.tokens.operations.ExponentiationToken
- ExpressionReader - Class in picasso.view.commands
-
Read expression from a file
- ExpressionReader(Canvas, Frame) - Constructor for class picasso.view.commands.ExpressionReader
- 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 exponential 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
- 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.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.ConstantAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.CosAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.DivideAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.EqualAnalyzer
-
Semantic Analyzer for Equal
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ExpAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.ExponentiationAnalyzer
- 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.MinusAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.NegateAnalyzer
- 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.PlusAnalyzer
- 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.StringAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.TanAnalyzer
- generateExpressionTree(Stack<Token>) - Method in class picasso.parser.TimesAnalyzer
- 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
- 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
- getExpr(String) - Static method in class picasso.parser.IdentifierAnalyzer
-
Retrieves the expression from the idToExpression map
- 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
- getHistory() - Static method in class picasso.view.commands.Evaluator
- getImage() - Method in class picasso.parser.language.expressions.ImageClip
- getImage() - Method in class picasso.parser.language.expressions.ImageWrap
- getImageName() - Method in class picasso.parser.language.expressions.Image
- 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
- getLeftParam() - Method in class picasso.parser.language.expressions.PerlinBW
- getLeftParam() - Method in class picasso.parser.language.expressions.PerlinColor
- 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.parser.tokens.StringToken
-
Getter method to get the string
- getName() - Method in class picasso.util.NamedCommand
-
Returns name of this command.
- getPixmap() - Method in class picasso.view.Canvas
- getPrecedence() - Method in class picasso.parser.tokens.operations.OperatorToken
-
Returns operators precedence.
- 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
- getRightParam() - Method in class picasso.parser.language.expressions.PerlinBW
- getRightParam() - Method in class picasso.parser.language.expressions.PerlinColor
- getSemanticParser() - Method in class picasso.parser.Tokenizer
- getSize() - Method in class picasso.model.Pixmap
- getText() - Method in class picasso.view.Text
-
Returns the text from the text field
- getTextField() - Method in class picasso.view.Text
-
Returns JTextField object
- 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
- getXCoord() - Method in class picasso.parser.language.expressions.ImageClip
- getXCoord() - Method in class picasso.parser.language.expressions.ImageWrap
- getYCoord() - Method in class picasso.parser.language.expressions.ImageClip
- getYCoord() - Method in class picasso.parser.language.expressions.ImageWrap
- goToWorkSpace() - Method in class picasso.view.Frame
- GROUPING - Static variable in interface picasso.parser.tokens.operations.OperationInterface
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
- Image - Class in picasso.parser.language.expressions
-
Represents the class for image
- Image(String) - Constructor for class picasso.parser.language.expressions.Image
- ImageClip - Class in picasso.parser.language.expressions
-
Represents the function class for image clip
- ImageClip(Image, ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.ImageClip
- ImageClipAnalyzer - Class in picasso.parser
-
Represents the analyzer for image clip
- ImageClipAnalyzer() - Constructor for class picasso.parser.ImageClipAnalyzer
- ImageClipToken - Class in picasso.parser.tokens.functions
-
Represents the token for image clip
- ImageClipToken() - Constructor for class picasso.parser.tokens.functions.ImageClipToken
- imageToDomainScale(int, int) - Method in class picasso.view.commands.Evaluator
- ImageWrap - Class in picasso.parser.language.expressions
-
Represents the function class for image wrap
- ImageWrap(Image, ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.ImageWrap
- ImageWrapAnalyzer - Class in picasso.parser
-
Represents the analyzer for image wrap
- ImageWrapAnalyzer() - Constructor for class picasso.parser.ImageWrapAnalyzer
- ImageWrapToken - Class in picasso.parser.tokens.functions
-
Represents the token for image wrap
- 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
- 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 - Static variable in interface picasso.parser.tokens.operations.OperationInterface
- 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.IdentifierToken
- isConstant() - Method in class picasso.parser.tokens.NumberToken
- isConstant() - Method in class picasso.parser.tokens.StringToken
- 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.IdentifierToken
- isFunction() - Method in class picasso.parser.tokens.NumberToken
- isFunction() - Method in class picasso.parser.tokens.StringToken
- 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
- LCG - Class in picasso.parser.language.expressions
-
Represents a Linear congruential generator (LCG) This generates pseudo-randomized numbers
- LCG(long) - Constructor for class picasso.parser.language.expressions.LCG
- 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
- LogAnalyzer - Class in picasso.parser
-
Handles parsing the Log function.
- LogAnalyzer() - Constructor for class picasso.parser.LogAnalyzer
- Logarithm - Class in picasso.parser.language.expressions
-
Represents the log function in the Picasso language.
- Logarithm(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Logarithm
-
Create a log expression tree that applies log() to the given parameter.
- LogToken - Class in picasso.parser.tokens.functions
-
Represents the sine 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 - Static variable in class picasso.parser.language.CharConstants
- MinusAnalyzer - Class in picasso.parser
-
Handles parsing the minus or "multiplication function".
- MinusAnalyzer() - Constructor for class picasso.parser.MinusAnalyzer
- MinusToken - Class in picasso.parser.tokens.operations
-
Represents the minus sign token
- MinusToken() - Constructor for class picasso.parser.tokens.operations.MinusToken
- MOD - Static variable in class picasso.parser.language.CharConstants
- mouseMoved(MouseEvent) - Method in class picasso.view.DebugController
-
For canvas to show tool tip containing pixel color information
- Multiplication - Class in picasso.parser.language.expressions
-
Represents the multiplication binary operation in the Picasso language
- Multiplication(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Multiplication
-
Create a multiplication expression tree that takes as a parameter the two operands
- MULTIPLY_OR_DIVIDE - Static variable in interface picasso.parser.tokens.operations.OperationInterface
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.
- NegateAnalyzer - Class in picasso.parser
-
Handles parsing the invert or "negation function".
- NegateAnalyzer() - Constructor for class picasso.parser.NegateAnalyzer
- NegateToken - Class in picasso.parser.tokens.operations
-
Represents the invert sign token
- NegateToken() - Constructor for class picasso.parser.tokens.operations.NegateToken
- Negation - Class in picasso.parser.language.expressions
-
Represents the negation unary operation in the Picasso language
- Negation(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Negation
-
Create a negation expression tree that takes as a parameter one operand
- newTab(String, Pixmap) - Method in class picasso.view.Frame
-
Creates a new panel when Copy is run
- nextFloat() - Method in class picasso.parser.language.expressions.LCG
-
Randomly generate a float
- nextInt() - Method in class picasso.parser.language.expressions.LCG
-
How the LCG functions
- nextInt(int) - Method in class picasso.parser.language.expressions.LCG
-
Including a bound param that lets us use the LCG for basic random integer num gen
- 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
- 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
-
A marker interface
- OperatorToken - Class in picasso.parser.tokens.operations
-
Represents an operator token
- OperatorToken(int, int) - Constructor for class picasso.parser.tokens.operations.OperatorToken
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)
- PERIOD - Static variable in class picasso.parser.language.CharConstants
- PerlinBW - Class in picasso.parser.language.expressions
-
Represents the perlinBW function in the Picasso language.
- PerlinBW(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.PerlinBW
-
Create a perlinBW expression that takes two parameters.
- PerlinBWAnalyzer - Class in picasso.parser
-
Handles parsing the perlinBW function
- PerlinBWAnalyzer() - Constructor for class picasso.parser.PerlinBWAnalyzer
- PerlinBWToken - Class in picasso.parser.tokens.functions
-
Represents the PerlinBW function token
- PerlinBWToken() - Constructor for class picasso.parser.tokens.functions.PerlinBWToken
- PerlinColor - Class in picasso.parser.language.expressions
-
Represents the perlinColor function in the Picasso language.
- PerlinColor(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.PerlinColor
-
Create a perlinColor expression that takes two parameters.
- PerlinColorAnalyzer - Class in picasso.parser
-
Handles parsing the perlinColor function.
- PerlinColorAnalyzer() - Constructor for class picasso.parser.PerlinColorAnalyzer
- PerlinColorToken - Class in picasso.parser.tokens.functions
-
Represents the PerinColor function token
- PerlinColorToken() - Constructor for class picasso.parser.tokens.functions.PerlinColorToken
- 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 - Static variable in class picasso.parser.language.CharConstants
- PlusAnalyzer - Class in picasso.parser
-
Handles parsing the plus or "addition function".
- PlusAnalyzer() - Constructor for class picasso.parser.PlusAnalyzer
- PlusToken - Class in picasso.parser.tokens.operations
-
Represents the plus sign token
- PlusToken() - Constructor for class picasso.parser.tokens.operations.PlusToken
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
-
Represents the token for quotation character
- QuoteToken() - Constructor for class picasso.parser.tokens.chars.QuoteToken
R
- 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(Frame) - Constructor for class picasso.view.commands.Reader
-
Creates a Reader object, which prompts users for image files to open
- refresh() - Method in class picasso.view.Canvas
- 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
-
Represents the rgbToYCrCb function in the Picasso language.
- RgbToYCrCb(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.RgbToYCrCb
-
Create a rgbToYCrCb expression tree that takes as a parameter the two operands
- RgbToYCrCbAnalyzer - Class in picasso.parser
-
Handles 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
- setExpression(String) - Method in class picasso.view.commands.Evaluator
- setIdToExpression(String, ExpressionTreeNode) - Static method in class picasso.parser.IdentifierAnalyzer
-
Sets a variable and its expression into the map
- 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.Frame
- setText(String) - Method in class picasso.view.Text
-
Sets the text in the text field
- SinAnalyzer - Class in picasso.parser
-
Handles parsing the sine function.
- SinAnalyzer() - Constructor for class picasso.parser.SinAnalyzer
- Sine - Class in picasso.parser.language.expressions
-
Represents the sine function in the Picasso language.
- Sine(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Sine
-
Create a sine expression tree that applies sin() to the given parameter.
- SinToken - Class in picasso.parser.tokens.functions
-
Represents the sine 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
- StringAnalyzer - Class in picasso.parser
-
Represents the analyzer class for image
- StringAnalyzer() - Constructor for class picasso.parser.StringAnalyzer
- StringToExpression - Class in picasso.parser.language.expressions
-
Represents the StringToExpression operation in the Picasso language
- StringToExpression(String) - Constructor for class picasso.parser.language.expressions.StringToExpression
- StringToken - Class in picasso.parser.tokens
-
Represents the token class for image
- StringToken(String) - Constructor for class picasso.parser.tokens.StringToken
-
Constructs a token representing the value of string
- Subtraction - Class in picasso.parser.language.expressions
-
Represents the subtraction binary operation in the Picasso language
- Subtraction(ExpressionTreeNode, ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Subtraction
-
Create a subtraction expression tree that takes as a parameter the two operands
T
- TanAnalyzer - Class in picasso.parser
-
Handles parsing the tangent function.
- TanAnalyzer() - Constructor for class picasso.parser.TanAnalyzer
- Tangent - Class in picasso.parser.language.expressions
-
Represents the sine function in the Picasso language.
- Tangent(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Tangent
-
Create a tangent expression tree that takes as a parameter the given expression
- TanToken - Class in picasso.parser.tokens.functions
-
Represents the tan function token
- TanToken() - Constructor for class picasso.parser.tokens.functions.TanToken
- Text - Class in picasso.view
-
Represents Text field
- Text(Canvas, Frame) - Constructor for class picasso.view.Text
-
Creates a text field taking canvas and frame as parameters.
- 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
- TimesAnalyzer - Class in picasso.parser
-
Handles parsing the times or "multiplication function".
- TimesAnalyzer() - Constructor for class picasso.parser.TimesAnalyzer
- TimesToken - Class in picasso.parser.tokens.operations
-
Represents the times sign token
- TimesToken() - Constructor for class picasso.parser.tokens.operations.TimesToken
- 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.BinaryOperation
-
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.Image
- toString() - Method in class picasso.parser.language.expressions.ImageClip
-
Returns the string representation of the function in the format "ImageWrap(
, )" - toString() - Method in class picasso.parser.language.expressions.ImageWrap
-
Returns the string representation of the function in the format "ImageWrap(
, )" - toString() - Method in class picasso.parser.language.expressions.PerlinBW
-
Returns the string representation of the function in the format "PerlinBW: (
, )" - toString() - Method in class picasso.parser.language.expressions.PerlinColor
-
Returns the string representation of the function in the format "PerlinColor: (
, )" - 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.UnaryOperation
-
Returns the string representation of the function in the format "
: ( )" - toString() - Method in class picasso.parser.language.expressions.Variable
- 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
- UnaryOperation - Class in picasso.parser.language.expressions
-
Represents an operation that takes one argument.
- UnaryOperation(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.UnaryOperation
- UNDER_SCORE - Static variable in class picasso.parser.language.CharConstants
- updateHistoryDisplay() - Method in class picasso.view.Frame
-
Update the history display
V
- value() - Method in class picasso.parser.tokens.chars.CharToken
- value() - Method in class picasso.parser.tokens.NumberToken
- 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
-
Represent the wrap class for picasso program
- Wrap(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.Wrap
-
Create a wrap expression tree that takes as a parameter the given expression
- WrapAnalyzer - Class in picasso.parser
-
Handles parsing the wrap function
- WrapAnalyzer() - Constructor for class picasso.parser.WrapAnalyzer
- WrapToken - Class in picasso.parser.tokens.functions
-
Represents the ceiling function token
- 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() - Constructor for class picasso.parser.language.expressions.X
Y
- Y - Class in picasso.parser.language.expressions
-
Represents y in a Picasso expression
- Y() - Constructor for class picasso.parser.language.expressions.Y
- YCrCbToRGB - Class in picasso.parser.language.expressions
-
Represents the rgbToYCrCb function in the Picasso language.
- YCrCbToRGB(ExpressionTreeNode) - Constructor for class picasso.parser.language.expressions.YCrCbToRGB
-
Create a YCrCbToRGB expression tree that takes as a parameter the two operands
- YCrCbToRGBAnalyzer - Class in picasso.parser
-
Handles 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