Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Add Better Support for Nested Parenthesis #2

Closed
@ghost

Description

See original ticket: http://code.google.com/p/java2python/issues/detail?id=39

Need to translate:

double max_z = Math.sqrt((radius*radius*a*a + radius*radius*b*b) / (c*c+a*a+b*b));

To something like:

max_z = Math.sqrt(radius * radius * self.a * self.a + radius * radius * self.b * self.b / self.c * self.c + self.a * self.a + self.b * self.b)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions