0
votes
2answers
49 views
Moose: Extending Exporter causes constructor to disappear?
Here's something weird that I can't figure out. I have a Moose class that I also want to export some constants, using the age-old standard Exporter module. However, as soon as I add extends Exporter …
0
votes
0answers
15 views
FBX camera export
Does anyone have any sample code regarding setting up FBX cameras? The ViewScene sample code in the SDK seems to do some strange rotation calculation based on the eye point and the target point which …
0
votes
3answers
157 views
How do I rename an exported function in Perl?
I have some Perl modules which exports various functions. (We haven't used @EXPORT in new modules for some years, but have retained it for compatibility with old scripts.)
I have renamed a number of …
1
vote
3answers
258 views
How do I export Readonly variables with mod_perl?
I'm trying to make it easier to follow some Perl Best Practices by creating a Constants module that exports several of the scalars used throughout the book. One in particular, $EMPTY_STRING, I can …
0
votes
3answers
156 views
What’s the best way to have two modules which use functions from one another in Perl?
Unfortunately, I'm a totally noob when it comes to creating packages, exporting, etc in Perl. I tried reading some of the modules and often found myself dozing off from the long chapters. It would be …
3
votes
1answer
106 views
Do I need Exporter if I’m going for pure OO in Perl?
The docs (Exporter and perlmodlib) say:
As a general rule, if the module is
trying to be object oriented then
export nothing.
But then perlmodlib also says:
Standard, bundled modules are …
