Package edu.cmu.cs.stage3.math

Examples of edu.cmu.cs.stage3.math.Vector3


  }
  private Model ascend( Model part ) {
    if( part.doEventsStopAscending() ) {
      return part;
    }
    Element parent = part.getParent();
    if( parent instanceof Model ) {
      return ascend( (Model)parent );
    } else {
      return part;
    }
View Full Code Here


  private void updateOverrideValueClasses() {
    Class elementOverrideValueClass = null;
    Class valueOverrideValueClass = null;
    String propertyNameValue = propertyName.getStringValue();
    if( propertyNameValue!=null ) {
      Element elementValue = element.getElementValue();
      if( elementValue!=null ) {
        edu.cmu.cs.stage3.alice.core.Property property = elementValue.getPropertyNamed( propertyNameValue );
        if( property != null ) {
          elementOverrideValueClass = property.getDeclaredClass();
          valueOverrideValueClass = property.getValueClass();
        } else {
          if( elementValue instanceof Expression ) {
View Full Code Here

  public final StringProperty propertyName = new StringProperty( this, "propertyName", null );
  private void updateOverrideValueClass() {
    Class elementOverrideValueClass = null;
    String propertyNameValue = propertyName.getStringValue();
    if( propertyNameValue!=null ) {
      Element elementValue = element.getElementValue();
      if( elementValue!=null ) {
        Property property = elementValue.getPropertyNamed( propertyNameValue );
        if( property != null ) {
          elementOverrideValueClass = property.getDeclaredClass();
        } else {
          if( elementValue instanceof Expression ) {
            Class cls = ((Expression)elementValue).getValueClass();
View Full Code Here

  }
  private Property getPropertyValue() {
    if( element.getOverrideValueClass() == null ) {
      updateOverrideValueClass();
    }
    Element elementValue = element.getElementValue();
    String propertyNameValue = propertyName.getStringValue();
    if( elementValue != null && propertyNameValue != null ) {
      return elementValue.getPropertyNamed( propertyNameValue );
//      Property property = elementValue.getPropertyNamed( propertyNameValue );
//      if( property == null ) {
//        if( elementValue instanceof Expression ) {
//          Expression expression = (Expression)elementValue;
//          if( Element.class.isAssignableFrom( expression.getValueClass() ) ) {
View Full Code Here

    manufactureAnyNecessaryDetails();
  }
  private void updateDetails( java.awt.event.MouseEvent mouseEvent ) {
    for( int i=0; i<details.size(); i++ ) {
      Expression detail = (Expression)details.get( i );
      if( detail.name.getStringValue().equals( "x" ) ) {
        ((Variable)detail).value.set( new Double( mouseEvent.getX() ) );
      } else if( detail.name.getStringValue().equals( "y" ) ) {
        ((Variable)detail).value.set( new Double( mouseEvent.getY() ) );
      } else if( detail.name.getStringValue().equals( "what" ) ) {
View Full Code Here

    if( aValue != null ) {
      if( aValue.equals( bValue ) ) {
                return true;
            } else {
                if( aValue instanceof Expression ) {
                    Expression aExpression = (Expression)aValue;
                    Object aValue2 = aExpression.getValue();
                    if( bValue instanceof Expression ) {
                        Expression bExpression = (Expression)bValue;
                        Object bValue2 = bExpression.getValue();
                        if( aExpression.equals( bExpression.getValue() ) ) {
                            return true;
                        } else {
                            if( aValue2 != null ) {
                                if( aValue2.equals( bExpression ) ) {
                                    return true;
                                } else {
                                    return aValue2.equals( bValue2 );
                                }
                            } else {
                                return bValue2==null;
                            }
                        }
                    } else {
                        if( aValue2 != null ) {
                            return aValue2.equals( bValue );
                        } else {
                            return bValue == null;
                        }
                    }
                } else {
                    if( bValue instanceof Expression ) {
                        Expression bExpression = (Expression)bValue;
                        Object bValue2 = bExpression.getValue();
                        if( aValue.equals( bExpression ) ) {
                            return true;
                        } else {
                            return aValue.equals( bValue2 );
                        }
                    } else {
                        return false;
                    }
                }
            }
    } else {
            if( bValue instanceof Expression ) {
                Expression bExpression = (Expression)bValue;
                Object bValue2 = bExpression.getValue();
                return bValue2 == null;
            } else {
                return bValue == null;
            }
    }
View Full Code Here

public abstract class ListNumberQuestion extends edu.cmu.cs.stage3.alice.core.question.NumberQuestion {
  public final ListProperty list = new ListProperty( this, "list", null );
  //protected abstract double getValue( List list );
  protected abstract int getValue( List list );
  public Object getValue() {
    List listValue = list.getListValue();
    if( listValue!=null ) {
            return new Integer( getValue( listValue ) );
    } else {
      return null;
    }
View Full Code Here

public abstract class ListObjectQuestion extends edu.cmu.cs.stage3.alice.core.Question {
  public final ListProperty list = new ListProperty( this, "list", null );
  protected abstract Object getValue( List list );
    public Class getValueClass() {
     List listValue = list.getListValue();
    if( listValue!=null ) {
            return listValue.valueClass.getClassValue();
    } else {
            //todo?
      return Object.class;
View Full Code Here

            //todo?
      return Object.class;
    }
    }
  public Object getValue() {
    List listValue = list.getListValue();
    if( listValue!=null ) {
            return getValue( listValue );
    } else {
      return null;
    }
View Full Code Here

public abstract class ListBooleanQuestion extends edu.cmu.cs.stage3.alice.core.question.BooleanQuestion {
  public final ListProperty list = new ListProperty( this, "list", null );
  protected abstract boolean getValue( List list );
  public Object getValue() {
    List listValue = list.getListValue();
    if( listValue!=null ) {
            if( getValue( listValue ) ) {
                return Boolean.TRUE;
            } else {
                return Boolean.FALSE;
View Full Code Here

TOP

Related Classes of edu.cmu.cs.stage3.math.Vector3

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.