This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 156748 - Some effect attributes are set to zero
Summary: Some effect attributes are set to zero
Status: VERIFIED FIXED
Alias: None
Product: javafx
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: Michal Skvor
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-01-14 10:27 UTC by Alexandr Scherbatiy
Modified: 2009-01-14 14:47 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandr Scherbatiy 2009-01-14 10:27:24 UTC
JavaFX_NB_Plugin_Franca_NB_65_fixes_latest_SDK_installer:  #25 14-Jan-2009 00:40:39

  Product Version         = NetBeans IDE 6.5 (Build 200901121801)
  Operating System        = Windows XP version 5.1 running on x86
  Java; VM; Vendor        = 1.6.0_11; Java HotSpot(TM) Client VM 11.0-b16; Sun Microsystems Inc.


Steps to reproduce:

- Drag and drop a PerspectiveTransform effect from the palette to the Circle component in the editor
The result is:
--------------------------------------------------
import javafx.scene.shape.Circle;
import javafx.scene.paint.Color;
import javafx.scene.effect.PerspectiveTransform;

Circle {
    centerX: 100,
    centerY: 100
    radius: 40
    fill: Color.BLACK
    effect: PerspectiveTransform {
        llx: 0.0, 
        lly: 0.0
        lrx: 0.0,
        lry: 0.0
        ulx: 0.0,
        uly: 0.0
        urx: 0.0,
        ury: 0.0
    }
}
--------------------------------------------------

- Run the project
  Nothing is shown.
  The PerspectiveTransform effect should have default attributes.
Comment 1 Alexandr Scherbatiy 2009-01-14 10:30:07 UTC
The same is for the Flood effect
Comment 2 Michal Skvor 2009-01-14 11:05:49 UTC
Fixed.
Comment 3 Alexandr Scherbatiy 2009-01-14 14:47:20 UTC
verified in JavaFX_NB_Plugin_Franca_NB_65_fixes_cont: #28 14-Jan-2009 16:26:31