Examples of alpha()


Examples of com.lambdaworks.redis.SortArgs.alpha()

      }
    }

    Boolean isAlpha = params.isAlphabetic();
    if (isAlpha != null && isAlpha) {
      args.alpha();
    }
    return args;
  }

  static ZStoreArgs zArgs(Aggregate aggregate, int[] weights) {
View Full Code Here

Examples of com.lambdaworks.redis.SortArgs.alpha()

        args.desc();
      }
    }
    Boolean isAlpha = params.isAlphabetic();
    if (isAlpha != null && isAlpha) {
      args.alpha();
    }
    return args;
  }

  public static List<RedisClientInfo> toListOfRedisClientInformation(String clientList) {
View Full Code Here

Examples of org.apache.fop.datatypes.ColorType.alpha()

        w = w + area.getPaddingLeft() + area.getPaddingRight();
        h = h + area.getPaddingTop() + area.getPaddingBottom();

        // I'm not sure I should have to check for bg being null
        // but I do
        if ((bg != null) && (bg.alpha() == 0)) {
            this.addRect(rx, ry, w, h, bg.red(), bg.green(), bg.blue(),
                         bg.red(), bg.green(), bg.blue());
        }

        rx = rx - area.getBorderLeftWidth();
View Full Code Here

Examples of org.gephi.graph.api.EdgeData.alpha()

            this.edge = Edge;
        }

        public Color getEdgeColor() {
            EdgeData data = edge.getEdgeData();
            if(data.r()<0||data.g()<0||data.b()<0||data.alpha()<0){
                return null;//Not specific color for edge
            }

            return new Color(data.r(), data.g(), data.b(), data.alpha());
        }
View Full Code Here

Examples of org.gephi.graph.api.EdgeData.alpha()

            EdgeData data = edge.getEdgeData();
            if(data.r()<0||data.g()<0||data.b()<0||data.alpha()<0){
                return null;//Not specific color for edge
            }

            return new Color(data.r(), data.g(), data.b(), data.alpha());
        }

        public void setEdgeColor(Color c) {
            if (c != null) {
                EdgeData data = edge.getEdgeData();
View Full Code Here

Examples of org.gephi.graph.api.EdgeData.alpha()

            this.edge = Edge;
        }

        public Color getEdgeColor() {
            EdgeData data = edge.getEdgeData();
            if(data.r()<0||data.g()<0||data.b()<0||data.alpha()<0){
                return null;//Not specific color for edge
            }

            return new Color(data.r(), data.g(), data.b(), data.alpha());
        }
View Full Code Here

Examples of org.gephi.graph.api.EdgeData.alpha()

            EdgeData data = edge.getEdgeData();
            if(data.r()<0||data.g()<0||data.b()<0||data.alpha()<0){
                return null;//Not specific color for edge
            }

            return new Color(data.r(), data.g(), data.b(), data.alpha());
        }

        public void setEdgeColor(Color c) {
            if (c != null) {
                EdgeData data = edge.getEdgeData();
View Full Code Here

Examples of org.gephi.graph.api.Node.alpha()

                } else {
                    Node source = edge.getSource();
                    r = 0.498f * source.r();
                    g = 0.498f * source.g();
                    b = 0.498f * source.b();
                    a = source.alpha();
                }
            } else {
                g = 0.498f * edge.g();
                b = 0.498f * edge.b();
                r = 0.498f * edge.r();
 
View Full Code Here

Examples of org.gephi.graph.api.Node.alpha()

                } else {
                    Node source = edge.getSource();
                    r = 0.498f * source.r();
                    g = 0.498f * source.g();
                    b = 0.498f * source.b();
                    a = source.alpha();
                }
            } else {
                g = 0.498f * edge.g();
                b = 0.498f * edge.b();
                r = 0.498f * edge.r();
 
View Full Code Here

Examples of org.gephi.graph.api.Node.alpha()

                if (a == 0f) {
                    Node source = edge.getSource();
                    r = 0.498f * source.r();
                    g = 0.498f * source.g();
                    b = 0.498f * source.b();
                    a = source.alpha();
                } else {
                    g = 0.498f * edge.g();
                    b = 0.498f * edge.b();
                    r = 0.498f * edge.r();
                    a = edge.alpha();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.