Re: [JPP-Devel] theaming feature

2009-12-10 Thread Stefan Steiniger
thank you! Larry Becker wrote: > Fixed the drop z bugs in the move , "move along angle", and "paste items > at" tools. > > Larry > > On Thu, Dec 10, 2009 at 2:28 PM, Larry Becker > wrote: > > Some of the move tool's dropping Z problems are the fault of my >

Re: [JPP-Devel] theaming feature

2009-12-10 Thread Larry Becker
Fixed the drop z bugs in the move , "move along angle", and "paste items at" tools. Larry On Thu, Dec 10, 2009 at 2:28 PM, Larry Becker wrote: > Some of the move tool's dropping Z problems are the fault of my > com.vividsolutions.jump.geom.CoordUtil which uses the 2D Coordinate > constructor. N

Re: [JPP-Devel] theaming feature

2009-12-10 Thread Larry Becker
Some of the move tool's dropping Z problems are the fault of my com.vividsolutions.jump.geom.CoordUtil which uses the 2D Coordinate constructor. No doubt there is a proper JTS class that I should be using instead of reinventing the vector algebra wheel. Larry 2009/12/10 Michaël Michaud > Hi Lu

Re: [JPP-Devel] theaming feature

2009-12-10 Thread Michaël Michaud
Hi Luca, > - postgis plugin doesn't support 3D (also shptopgsql doesn't) I need OGR for > it. > Just want to mention that with the datastore query tool, you can get 3D objects from postgis by querying select asewkb(geometry) instead of asbinary(geometry) > - some tool like move geometry drops

Re: [JPP-Devel] theaming feature

2009-12-10 Thread luca marletta
Thanksyou, I use you example and I reach my goal!. is there any description on the way OJ project is organized for development? I mean who is working on what.. I'd like to give some contribution even if I'm a newbee on java. For example I need a lot to manage 3D geometry and even if OJ is, afte

Re: [JPP-Devel] theaming feature

2009-12-09 Thread Nils Kuhn
Hi Luca, here is another example: public boolean execute(PlugInContext context) throws Exception{             this.reportNothingToUndoYet(context);         Layer lyr=context.getLayerManager().getLayer("yourLayerName");                 //getting the ColorThemingStyle from the layer         Co

Re: [JPP-Devel] theaming feature

2009-12-08 Thread Larry Becker
Here is an example: public boolean execute(final PlugInContext context) throws Exception { reportNothingToUndoYet(context); new CopySelectedItemsPlugIn().execute(context); Layer[] selectedLayers = context.getLayerNamePanel().getSelectedLayers(); FeatureSche

[JPP-Devel] theaming feature

2009-12-08 Thread luca marletta
Hi All, first tanks for the new openjump 1.3.1!! This my question: Can some one give me an suggestion which way I can apply a color scheme for each feature based on a field. I mean the same effect that from theme panel but programmaticaly. I'm working on a plugin for check polygon and I'd like t